-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 962 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 962 Bytes
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
{
"name": "demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js",
"format": "prettier --write .",
"prepare": "husky install",
"start": "node index.js"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"archiver": "^7.0.1",
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-validator": "^7.3.1",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.2.1",
"multer": "^2.0.2",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"eslint": "^10.0.1",
"husky": "^8.0.0",
"lint-staged": "^16.2.7",
"nodemon": "^3.1.11",
"prettier": "^3.8.1"
}
}