-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
42
43
{
"name": "trivialgame",
"version": "1.0.0",
"main": "backend/server.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon backend/server.js",
"start": "cross-env NODE_ENV=production node backend/server.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
},
"keywords": [],
"author": "",
"type": "module",
"license": "ISC",
"description": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"braces": "^3.0.3",
"cloudinary": "^2.2.0",
"connect-mongo": "^5.1.0",
"connect-mongodb-session": "^5.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.3",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.13",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"react-avatar-editor": "^13.0.2",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"streamifier": "^0.1.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^3.1.0"
}
}