-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 980 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 980 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
{
"name": "code-daily",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"install:client": "cd ./client/ && npm install",
"install:server": "cd ./server/ && npm install",
"install": "npm run install:server && npm run install:client",
"start:client": "cd ./client/ && npm start",
"start:server": "cd ./server/ && npm start",
"start:server-prod": "cd ./server && npm run prod",
"build:client": "cd ./client/ && npm run build",
"dev": "concurrently --kill-others-on-fail \"npm run start:server\" \"npm run start:client\"",
"start": "npm run start:server",
"prod": "npm run start:server-prod",
"test:client": "cd ./client && npm run test",
"test:server": "cd ./server && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fangnx/stackoverflow-daily.git"
},
"homepage": "https://github.com/fangnx/stackoverflow-daily#readme",
"dependencies": {
"concurrently": "^5.2.0"
}
}