-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 KB
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
{
"name": "threadit",
"main": "app.js",
"scripts": {
"test": "jest",
"start:dev": "nodemon server.js",
"start:prod": "set NODE_ENV=production && nodemon server.js",
"debug": "ndb server.js"
},
"dependencies": {
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cloudinary": "^2.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"firebase-admin": "^12.1.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.3.0",
"mongoose": "^8.1.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.12",
"nodemon": "^3.0.3",
"prom-client": "^15.1.2",
"puppeteer": "^21.11.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"socket.io": "^4.7.5",
"validator": "^13.11.0",
"web-push": "^3.6.7"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0",
"morgan": "^1.10.0",
"supertest": "^6.3.4"
}
}