-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
29 lines (29 loc) · 926 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
{
"name": "bad-cards-game",
"version": "1.0.0",
"description": "Bad Cards Game",
"scripts": {
"install:web": "cd web && npm i",
"install:server": "cd server && npm i",
"install": "npm-run-all install:*",
"build:web": "cd web && npm run build",
"build:server": "cd server && npm run build",
"build": "npm-run-all build:*",
"start:web": "cd web && npm run start",
"start:server": "cd server && npm run start:prod",
"start": "npm-run-all --parallel start:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epavanello/bad-cards-web.git"
},
"author": "Pavanello Emanuele <pavanello.emanuele@gmail.com> (http://pava.me)",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/epavanello/bad-cards-web/issues"
},
"homepage": "https://github.com/epavanello/bad-cards-web#readme",
"dependencies": {
"npm-run-all": "^4.1.5"
}
}