-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.47 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
61
62
63
{
"name": "project-boilerplate",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "npx lint-staged",
"release": "standard-version",
"commit": "cz"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix --cache --no-ignore",
"prettier --write .",
"git add -A ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/DungGramer/project-boilerplate.git"
},
"keywords": [
"project",
"boilerplate",
"project-boilerplate"
],
"author": "DungGramer",
"license": "MIT",
"bugs": {
"url": "https://github.com/DungGramer/project-boilerplate/issues"
},
"homepage": "https://github.com/DungGramer/project-boilerplate#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"standard-version": "^9.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}