-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.25 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
51
52
53
54
55
{
"name": "naija-diary",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon index.js",
"format": "prettier --write ./**/*.js",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.7.0",
"helmet": "^6.0.1",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mongoose": "^6.7.0",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"swagger-ui-express": "^4.6.0",
"winston": "^3.8.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"husky": "^8.0.1",
"jest": "^29.2.2",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "2.7.1",
"supertest": "^6.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}