-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 KB
/
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
38
39
40
41
{
"name": "backend",
"version": "2.0.0",
"description": "backend for shpitto me",
"main": "server/index.js",
"scripts": {
"server": "nodemon server/index.js",
"client": "cd frontend && npm run start",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"peer-to-peer-shopping",
"react",
"node",
"mongo"
],
"author": "sabine gottfried, nacho merino, laith massoud, tarek alkhatib, orwa houry",
"license": "ISC",
"dependencies": {
"async": "^2.6.1",
"async-waterfall": "^0.1.5",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dev": "^0.1.3",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"mongoose": "^5.0.11",
"multer": "^1.3.0",
"nodemailer": "^4.6.5",
"os": "^0.1.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"concurrently": "^3.5.1"
}
}