-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 849 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 849 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
32
{
"name": "gym-nerd-server",
"version": "1.0.0",
"engines": {
"node": "v12.16.1",
"npm": "v6.13.4"
},
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"description": "",
"main": "server.js",
"author": "dev-seahouse",
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"react-alert-template-basic": "^1.0.0",
"stripe": "^8.63.0"
},
"devDependencies": {
"concurrently": "^5.2.0",
"nodemon": "^1.19.1"
}
}