generated from wednesday-solutions/nodejs-hapi-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 4.37 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wednesday-solutions/node-js-hapi-template.git"
},
"author": "Wednesday Solutions",
"license": "MIT",
"bugs": {
"url": "https://github.com/wednesday-solutions/node-js-hapi-template/issues"
},
"homepage": "https://github.com/wednesday-solutions/node-js-hapi-template#readme",
"scripts": {
"start:development": "ENVIRONMENT_NAME=development node index.js",
"start:local": "ENVIRONMENT_NAME=local nodemon start index.js",
"start": "yarn start:local",
"format": "prettier-standard './**/**/*.js'",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:eslint:fix": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts --fix",
"lint:js": "npm run lint:eslint -- . ",
"lint:staged": "lint-staged",
"prettify": "prettier --write",
"precommit": "lint:staged",
"postinstall": "link-module-alias",
"preinstall": "command -v link-module-alias && link-module-alias clean || true",
"test": "jest --coverage",
"test:badges": "npm run test && jest-coverage-badges --output './badges'"
},
"dependencies": {
"@hapi/boom": "^9.1.3",
"@hapi/catbox-redis": "^6.0.2",
"@hapi/hapi": "^20.1.5",
"@hapi/inert": "5.2.2",
"@hapi/joi": "^17.1.1",
"@hapi/joi-date": "^2.0.1",
"@hapi/vision": "^5.5.4",
"cls-rtracer": "^2.6.0",
"dotenv": "^10.0.0",
"esm": "^3.2.25",
"hapi-auth-bearer-token": "^8.0.0",
"hapi-cors": "^1.0.3",
"hapi-pagination": "^4.0.0",
"hapi-rate-limit": "^5.0.0",
"hapi-swaggerui": "https://github.com/wednesday-solutions/hapi-swaggerui/#master",
"hbs": "^4.1.2",
"loadash": "^1.0.0",
"lodash": "^4.17.21",
"map-keys-deep": "0.0.2",
"moment": "^2.29.1",
"mysql2": "^2.2.5",
"nodemon": "^2.0.12",
"qs": "^6.10.1",
"semver": "^6.3.0",
"sequelize": "^6.6.5",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"wurst": "^5.0.3"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/node": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.14.5",
"@babel/runtime": "^7.14.8",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.2",
"babel-plugin-root-import": "^6.6.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.2.1",
"jest-coverage-badges": "^1.1.2",
"jest-extended": "^0.11.5",
"link-module-alias": "^1.2.0",
"lint-staged": "^9.4.2",
"pre-commit": "1.2.2",
"prettier": "2.3.2",
"prettier-config-standard": "^1.0.1",
"sequelize-cli": "^6.2.0",
"sequelize-mock": "^0.10.2",
"shelljs": "^0.8.4"
},
"precommit": "lint:staged",
"lint-staged": {
"*.js": [
"npm run lint:eslint:fix",
"git add --force",
"jest --findRelatedTests $STAGED_FILES"
],
"*.json": [
"prettier --write",
"git add --force"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"_moduleAliases": {
"root": ".",
"utils": "utils",
"models": "lib/models",
"daos": "lib/daos",
"config": "config"
}
}