-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 893 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
{
"name": "jobify",
"version": "1.0.0",
"description": "#### Track Your Job Search",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-client": "cd client && npm run build",
"server": "nodemon app.js --ignore client",
"client": "cd client && npm run start",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.5.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"concurrently": "^8.2.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.2.0",
"express-validator": "^7.0.1",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^7.5.1",
"nodemon": "^3.0.1"
}
}