-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "backend-user-management-system",
"type": "module",
"version": "1.0.0",
"description": "Backend of User Management System",
"main": "index.js",
"scripts": {
"dev": "nodemon src/server.js",
"format:check": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"author": "Lovish Duggal <[email protected]>",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.6.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.8.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "3.3.2"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"npm run format:fix"
]
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"http-errors": "^2.0.0",
"mongoose": "^8.5.0"
}
}