-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 854 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
{
"name": "kdm-shuffler",
"version": "1.0.0",
"description": "",
"scripts": {
"build-client": "cd client && yarn build",
"client": "cd client && yarn start",
"server": "cd server && nodemon server.js",
"dev": "PORT=5001 SERVER_PORT=5002 concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"postinstall": "cd client && yarn install",
"start": "cd server && node server.js",
"heroku-postbuild": "cd client && yarn install && yarn install --only=dev --no-shrinkwrap && yarn run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.4"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.6"
}
}