-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.45 KB
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
{
"name": "api-express-example",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"start:dev": "nodemon",
"start": "node src/index.js",
"commit": "npx git-cz",
"test": "jest",
"docs": "jsdoc -c jsdoc.config.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --ext .js",
"git add"
]
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.0.0",
"http-status": "^1.4.2",
"openapi-comment-parser": "^1.0.0",
"swagger-stats": "^0.95.17",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.9.1",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-openapi": "^0.0.4",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.4.0",
"jest-html-reporters": "^2.0.3",
"jsdoc": "^3.6.5",
"jsdoc-plugin-typescript": "^2.0.5",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}