forked from Lordpluha/card-game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 974 Bytes
/
package.json
File metadata and controls
31 lines (30 loc) · 974 Bytes
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
{
"name": "card-game",
"version": "1.0.0",
"description": "Card game for campus",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:back": "cd back && npm run start",
"start:front": "cd front && npm run start",
"start": "npm-run-all --parallel start:back start:front",
"db:init": "cd back && npm run db:init",
"db:init-win": "cd back && npm run db:init-win",
"install:back": "cd back && npm install",
"install:front": "cd front && npm install",
"install": "npm-run-all --parallel install:back install:front && cd back && npm run db:init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lordpluha/card-game.git"
},
"author": "Lordpluha",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lordpluha/card-game/issues"
},
"homepage": "https://github.com/Lordpluha/card-game#readme",
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}