-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "standard-dev-demo",
"version": "1.1.6",
"description": "Stack: pnpm, eslint, prettier, husky, commitlint",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"src/*.{ts,tsx}\" --fix",
"format": "prettier --config .prettierrc \"src/*.ts\" --write",
"prepare": "husky install",
"release": "pnpm release:changelog && standard-version",
"release:changelog": "pnpm exec conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"keywords": [],
"author": "hotaru",
"license": "GPL-3.0",
"files": [
"dist",
"LICENSE",
"README.md"
],
"bugs": {
"url": "https://github.com/biyuehu/standard-dev-demo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biyuehu/standard-dev-demo.git"
},
"homepage": "https://github.com/biyuehu/standard-dev-demo",
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "^18.6.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-typescript": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2",
"standard-version": "^9.5.0"
},
"lint-staged": {
"*.{js,jsx,vue,ts}": [
"pnpm lint",
"pnpm format",
"git add ."
]
}
}