-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 843 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
34
35
36
37
{
"name": "jobs-api",
"version": "1.0.0",
"description": "jobs backend/ api",
"main": "server.js",
"scripts": {
"start": "node API/server.js",
"dev": "nodemon API/server.js"
},
"keywords": [
"api"
],
"author": "mystik5551@gmail.com",
"license": "ISC",
"dependencies": {
"axios": "^0.25.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.3.0",
"helmet": "^5.0.2",
"http-status-codes": "^2.2.0",
"joi": "^17.6.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.2.0",
"rate-limiter": "^0.2.0",
"swagger-ui-express": "^4.3.0",
"xss-clean": "^0.1.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}