-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
38 lines (38 loc) · 1.35 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"prettier:check": "prettier --config .prettierrc --ignore-path .gitignore --ignore-path .prettierignore --check .",
"prettier:write": "prettier --config .prettierrc --ignore-path .gitignore --ignore-path .prettierignore --write .",
"check": "pnpm prettier:check",
"test": "pnpm test",
"debug:ko": "pnpm --filter ./packages/ko debug",
"debug:ko-lints": "pnpm --filter ./packages/ko-lints debug",
"debug:plugins": "pnpm --filter ./packages/auto-polyfills-webpack-plugin debug & pnpm --filter ./packages/dynamic-resolve-webpack-plugin debug",
"debug:all": "pnpm debug:ko & pnpm debug:ko-lints & pnpm debug:plugins",
"docs:start": "cd website && pnpm start",
"changeset": "pnpm run prettier:write && changeset",
"bump": "changeset version",
"release": "changeset publish"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@tsconfig/node14": "^1.0.3",
"@types/node": "^17.0.45",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"prettier": "^2.8.4"
},
"packageManager": "[email protected]"
}