-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
{
"name": "eslint-prettier-husky-demo",
"version": "1.0.0",
"description": "eslint+prettier+husky配置",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write",
"lint": "eslint --ext .js src/*",
"lint-fix": "eslint --ext .js src/* --fix",
"prepare": "husky install",
"commit": "git add . && git cz",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpack-boost/eslint-prettier-husky-demo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/webpack-boost/eslint-prettier-husky-demo/issues"
},
"homepage": "https://github.com/webpack-boost/eslint-prettier-husky-demo#readme",
"dependencies": {
"@types/node": "^18.11.18",
"cross-env": "^7.0.3",
"express": "^4.18.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.4.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.6",
"commitlint": "^17.4.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"cz-emoji": "1.3.2-canary.2",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-vue": "^9.8.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prettier": "2.8.1",
"standard-version": "^9.5.0",
"stylelint": "^14.16.1",
"typescript": "^4.9.4",
"vue-eslint-parser": "^9.1.0"
},
"lint-staged": {
"src/*.js": [
"prettier --write",
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}