-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "kone-app",
"version": "1.0.0",
"main": "index.mjs",
"scripts": {
"start": "node index.mjs",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"format": "prettier --single-quote --check .",
"prepare": "cd ../ && husky install server/.husky",
"dev": "nodemon --experimental-modules index.mjs"
},
"dependencies": {
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"bson": "^6.9.0",
"busboy": "^1.6.0",
"connect-busboy": "^1.0.0",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"gridfs-stream": "^1.1.1",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.10.0",
"mongoose": "^8.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.0.2"
},
"devDependencies": {
"eslint": "^8.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"nodemon": "^2.0.12",
"prettier": "^2.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --single-quote --write",
"eslint --fix"
]
}
}