-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 922 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": "hagomanda",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "NODE_ENV=development nodemon ./bin/www",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"husky": "^7.0.0",
"jade": "^1.11.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^12.3.3",
"mongoose": "^6.2.0",
"morgan": "~1.9.1",
"nodemon": "^2.0.15",
"socket.io": "^4.4.1",
"validator": "^13.7.0"
},
"devDependencies": {
"husky": "^7.0.0"
}
}