-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.38 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
{
"name": "root",
"private": false,
"scripts": {
"commit": "cz",
"commitlint": "commitlint --edit $1",
"lint-staged": "lint-staged",
"husky": "husky install",
"build": "pnpm -r --filter=./packages/* run build",
"ci:version": "changeset version && pnpm install --frozen-lockfile false",
"ci:publish": "pnpm build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vingogo/vin-cli.git"
},
"author": "Alvin",
"license": "MIT",
"bugs": {
"url": "https://github.com/vingogo/vin-cli/issues"
},
"homepage": "https://github.com/vingogo/vin-cli#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --config ./.prettierrc.js --write"
],
"**/*.json": [
"prettier --config ./.prettierrc.js --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/node": "^16.11.7",
"@vingogo/tsconfig": "workspace:^",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.0",
"rimraf": "^5.0.1"
}
}