forked from brentvollebregt/monopoly-money
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 992 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "monopoly-money",
"private": true,
"description": "> TODO: description",
"author": "Brent Vollebregt",
"homepage": "https://github.com/brentvollebregt/monopoly-money#readme",
"main": "packages/server/build/index.js",
"scripts": {
"start": "node packages/server/build",
"build": "cd packages/game-state && npm run build && cd ../server && npm run build && cd ../client && npm run build && cd ../../ && node postbuild.js",
"client:dev": "cd packages/client && npm start",
"server:dev": "cd packages/server && npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brentvollebregt/monopoly-money.git"
},
"bugs": {
"url": "https://github.com/brentvollebregt/monopoly-money/issues"
},
"devDependencies": {
"tslint": "^5.20.0"
},
"workspaces": [
"./packages/*"
],
"engines": {
"node": "16.x",
"npm": "8.x"
},
"dependencies": {
"sitemap": "^7.1.1",
"ts-node": "^10.7.0"
}
}