-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
{
"name": "vend-speed",
"version": "0.0.1",
"main": "bin/index.js",
"engines": {
"node": ">=14.20.0",
"npm": ">=9.6.1"
},
"scripts": {
"start": "node .",
"dev": "nodemon .",
"test": "NODE_ENV=test jest -c jest.config.js --runInBand --detectOpenHandles --forceExit",
"lint": "eslint --ignore-pattern 'node_modules/**' 'src/index.js'",
"lint-fix": "npm run lint -- --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint-fix"
]
},
"dependencies": {
"@hapi/hapi": "^21.3.0",
"@hapi/inert": "^7.1.0",
"@hapi/vision": "^7.0.1",
"awilix": "^4.2.1",
"bcrypt": "^5.1.0",
"hapi-swagger": "^16.0.1",
"joi": "^17.9.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.3",
"node-redis-warlock": "^1.0.2",
"rate-limiter-flexible": "^2.4.1",
"redis": "^4.6.5",
"uuid": "^8.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^1.3.1",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.3"
},
"keywords": [],
"author": "Victor Okeugo",
"license": "ISC"
}