-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 786 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 786 Bytes
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
{
"type": "module",
"scripts": {
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"test": "NODE_ENV=test jest --watchAll",
"seed": "node seed.js"
},
"dependencies": {
"@arcjet/node": "^1.0.0-beta.2",
"@upstash/workflow": "^0.2.12",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"envalid": "^8.0.0",
"express": "^4.21.2",
"express-async-errors": "^3.1.1",
"express-validator": "^7.2.1",
"express-winston": "^4.2.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.10.0",
"nodemailer": "^6.10.0",
"socket.io": "^4.8.1",
"winston": "^3.11.0"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}