-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 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
44
45
{
"name": "webapp",
"version": "0.0.0",
"private": true,
"engines": {
"node": "20.14.0"
},
"scripts": {
"start": "export NODE_ENV=production && node ./bin/www",
"devstart": "nodemon ./bin/www",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"client": "cd client && npm start",
"dev": "npm run devstart & npm run client"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cloudinary": "^1.25.2",
"cookie-parser": "^1.4.5",
"crypto-js": "^4.0.0",
"debug": "~2.6.9",
"express": "^4.17.1",
"express-form-data": "^2.0.17",
"express-session": "1.15.6",
"express-sslify": "^1.2.0",
"extract-zip": "^2.0.1",
"http-errors": "~1.6.2",
"https": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"libpq": "^1.8.13",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"nodemailer": "^6.6.2",
"peer": "^1.0.2",
"pg": "^8.12.0",
"pg-native": "^3.1.0",
"pg-sync": "^0.2.0",
"rotating-file-stream": "^3.0.3",
"socket.io": "^4.7.4",
"stripe": "^12.18.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^1.19.4"
}
}