-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 884 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
30
31
32
33
34
35
36
37
{
"name": "booxchange2020",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"engines": {
"node": "12.13.0",
"yarn": "1.19.1"
},
"scripts": {
"start": "node index.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"client": "cd client && yarn start",
"server": "nodemon index.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\""
},
"dependencies": {
"body-parser": "1.18.3",
"compression": "1.7.3",
"crypto-js": "4.0.0",
"dotenv": "6.1.0",
"express": "4.16.3",
"jwt-simple": "0.5.5",
"mongoose": "5.7.7",
"morgan": "1.9.1",
"nodemailer": "4.6.8",
"passport": "0.4.0",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"validator": "13.0.0",
"yarn": "1.22.4"
},
"devDependencies": {
"concurrently": "4.0.1",
"nodemon": "1.18.4"
}
}