-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 885 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
{
"name": "job-application",
"version": "1.0.0",
"main": "backend/index.js",
"type": "module",
"scripts": {
"dev": "SET MODE=development& nodemon backend/server",
"prod": "SET MODE=production& nodemon backend/server",
"start": "node backend/index.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"catchasyncerror": "^1.0.1",
"cloudinary": "^2.5.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"datauri": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.7.1",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.1.7",
"zod": "^3.23.8",
"zod-validation-error": "^3.4.0"
}
}