generated from cs130-w21/template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 959 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": "cs130-project",
"version": "1.0.0",
"description": "Main package.json file containing helpful development npm scripts",
"main": "index.js",
"scripts": {
"test": "cd server && npm run test",
"coverage": "cd server && npm run coverage",
"install:all": "npm install && npm run install:server && npm run install:client",
"install:server": "cd server && npm install",
"install:client": "cd client && yarn install",
"start": "concurrently -n server,client \"npm run run:server\" \"npm run run:client\"",
"run:server": "cd server && npm run dev-server",
"run:client": "cd client && yarn start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cs130-w21/19.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cs130-w21/19/issues"
},
"homepage": "https://github.com/cs130-w21/19#readme",
"devDependencies": {
"concurrently": "^5.3.0"
}
}