-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.81 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
{
"private": true,
"description": "",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna clean --y && yarn clean:lib",
"bootstrap": "lerna bootstrap",
"commit": "git cz",
"build:w": "tsc -b -w packages/**",
"clean:lib": "rimraf packages/**/lib packages/**/tsconfig.tsbuildinfo",
"debug": "node --inspect-brk packages/cli/bin/avenger.js",
"build": "tsc -b packages/**",
"test": "jest",
"start:website": "dumi dev",
"build:website": "dumi build",
"gh-pages": "gh-pages -d dist-website",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"devDependencies": {
"lerna": "^4.0.0",
"@osdoc-dev/eslint-config-preset-ts": "^0.2.3",
"@osdoc-dev/eslint-config-preset-prettier": "^0.2.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"commitizen": "^4.2.3",
"cz-customizable": "^6.3.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"typescript": "4.2.3",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"@types/node": "^13.7.0",
"ts-node-dev": "^1.1.6",
"rimraf": "^2.6.2",
"jest": "^26.6.3",
"@types/jest": "^26.0.22",
"ts-jest": "^26.4.4",
"dumi": "^1.0.13",
"gh-pages": "3.1.0",
"@umijs/plugin-analytics": "0.2.2",
"conventional-changelog-cli": "2.1.1"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS "
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}