-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1003 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": "event-dashboard",
"version": "0.0.0",
"scripts": {
"start": "node ./bin/www",
"server": "nodemon ./bin/www",
"client": "npm run start --prefix client",
"dev": "concurrently --kill-others \" npm run server \" \" npm run client \" "
},
"dependencies": {
"axios": "^0.21.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "~1.4.4",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "~4.16.1",
"express-session": "^1.17.1",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.28",
"morgan": "~1.9.1",
"node-cron": "^2.0.3",
"nodemailer": "^6.4.11",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"qrcode": "^1.4.4",
"react-script-tag": "^1.1.2",
"session": "^0.1.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.4"
}
}