-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
56
57
58
59
60
61
{
"name": "node-hapi-seed",
"version": "0.0.2",
"description": "Node.js seed project",
"main": "index.js",
"scripts": {
"test": "lab",
"start": "node index.js",
"dev": "nodemon index.js",
"lint-check": "eslint .",
"lint": "eslint --fix .",
"pretty": "prettier --write",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"npm run lint",
"npm run pretty"
],
"*.{json,md}": [
"npm run pretty"
]
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"api"
],
"author": "sai krishna thatipamula",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^10.0.0",
"@hapi/good": "^9.0.1",
"@hapi/good-console": "^9.0.1",
"@hapi/good-squeeze": "^6.0.0",
"@hapi/hapi": "^20.2.2",
"@hapi/inert": "^7.0.0",
"@hapi/vision": "^7.0.0",
"aws-sdk": "^2.1409.0",
"dotenv": "^16.0.3",
"hapi-swagger": "^14.5.5",
"joi": "^17.6.0",
"mongoose": "^6.6.1",
"winston": "^3.9.0",
"winston-cloudwatch": "^6.1.1"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.19.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.8"
}
}