-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 861 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
38
{
"name": "server",
"version": "1.0.0",
"description": "backend",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"prepare": "husky install"
},
"author": "tai.votan",
"license": "ISC",
"dependencies": {
"body-parser": "1.20.0",
"cors": "2.8.5",
"dotenv": "16.0.3",
"express": "4.18.1",
"helmet": "6.0.0",
"lodash": "4.17.21",
"mongoose": "6.6.5",
"swagger-jsdoc": "6.2.5",
"swagger-ui-express": "4.5.0"
},
"devDependencies": {
"@types/express": "4.17.14",
"@types/node": "18.8.2",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"typescript": "4.8.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}