-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"type": "module",
"name": "ced-dev-server",
"version": "1.0.0",
"description": "node server setup for large application",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"prepare": "husky install",
"lint": "eslint --fix ."
},
"author": "Syed Hasnain Mehadi",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"chalk": "^5.3.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.0",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.3",
"socket.io": "^4.7.1"
},
"devDependencies": {
"eslint": "^8.45.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"nodemon": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "eslint ."
}
},
"engines": {
"node": ">=18.0.0"
}
}