-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 1014 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
38
39
{
"name": "acm-website",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"client": "cd client && yarn start",
"server": "nodemon ./bin/www",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\""
},
"dependencies": {
"connect-mongo": "^3.2.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-session": "^1.17.1",
"gridfs-stream": "^1.1.1",
"http-errors": "~1.6.3",
"https": "^1.0.0",
"jade": "~1.11.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^5.10.9",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.2.0",
"nodemailer": "^6.4.14",
"nodemon": "^2.0.4",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"vanta": "^0.5.19"
},
"devDependencies": {
"concurrently": "^5.3.0"
}
}