-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
29 lines (29 loc) · 873 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": "crwn-clothing-server",
"version": "1.0.0",
"engines": {
"node": "10.15.0",
"npm": "6.14.11"
},
"scripts": {
"client": "cd client && npm run start",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"cors": "2.8.5",
"dotenv": "7.0.0",
"express": "^4.16.4",
"express-sslify": "^1.2.0",
"stripe": "6.28.0"
},
"devDependencies": {
"concurrently": "^4.0.1",
"nodemon": "^1.19.1"
}
}