-
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) · 871 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 871 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": "techpoint",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"client": "npm start --prefix client",
"server": "nodemon server.js --ignore client/",
"build": "cd client && npm run build",
"start": "node server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\" ",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.3.2",
"mongoose": "^5.7.5",
"stripe": "^7.9.0",
"validator": "^11.1.0"
},
"devDependencies": {
"concurrently": "^4.1.2",
"nodemon": "^1.19.1"
}
}