-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 983 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
39
40
41
{
"name": "group-communication-survey-api",
"version": "0.1.0",
"scripts": {
"start": "npm run start-watch",
"start-watch": "nodemon --exec ./node_modules/.bin/ts-node -- ./src/index.ts"
},
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"consola": "^2.11.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.3",
"moment": "^2.24.0",
"mongoose": "^5.8.11"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/helmet": "^0.0.45",
"@types/mongoose": "^5.7.0",
"@types/node": "^13.7.0",
"husky": "^4.2.3",
"lint-staged": "^10.1.1",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,md}": "prettier --write"
}
}