-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.15 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.15 KB
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": "savour",
"version": "1.0.0",
"description": "A P2P decentralized food sharing platform",
"main": "server.js",
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\" \"sudo service mongod restart\"",
"start": "node server.js",
"prod": "concurrently --kill-others-on-fail \"yarn start\" \"yarn client\"",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinsonly/Savour.git"
},
"author": "Vinson Ly, Anthony Ho, Herry Xu",
"license": "ISC",
"bugs": {
"url": "https://github.com/vinsonly/Savour/issues"
},
"homepage": "https://github.com/vinsonly/Savour#readme",
"dependencies": {
"app-root-path": "^2.1.0",
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"concurrently": "^3.6.1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"faker": "^4.1.0",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.2.7",
"nodemailer": "^4.6.8",
"validator": "^10.7.0"
}
}