-
Notifications
You must be signed in to change notification settings - Fork 189
/
package.json
51 lines (51 loc) · 1.77 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
{
"name": "root",
"private": true,
"scripts": {
"dev:all": "npm run bootstrap && npm run link && npm run dev",
"bootstrap": "lerna bootstrap --no-ci",
"dev": "lerna run dev --stream --parallel",
"prebuild": "rimraf '**/tsconfig.tsbuildinfo'",
"build": "lerna run build",
"prepublishOnly": "npm run build && lerna run prepublishOnly",
"publish": "lerna publish --registry https://registry.npmjs.org/",
"postpublish": "node scripts/sync-mirrors.js",
"publish:beta": "lerna publish --canary --preid beta --pre-dist-tag beta",
"test": "lerna run test",
"lint": "npx eslint . --fix",
"clean": "lerna run clean",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"link": "node scripts/link-packages.js",
"commit": "npx git-cz",
"license": "node scripts/license-checker.js",
"build:image": "node scripts/build-runner/build.js",
"build:image:beta": "BUILD_TAG=beta node scripts/build-runner/build.js",
"build:doc": "node scripts/build-doc && npm run build:markdown",
"build:markdown": "node scripts/markdown-render.js"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"conventional-changelog-cli": "^2.0.34",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.12.1",
"eslint-plugin-header": "^3.1.0",
"lerna": "^3.20.2",
"license-checker": "^25.0.1",
"typescript": "^4.0.5"
},
"dependencies": {
"@cloudbase/toolbox": "^0.6.0",
"del": "^5.1.0",
"eslint-config-tencent": "^1.0.0",
"got": "^11.8.1",
"mdmod": "^0.4.0",
"rimraf": "^3.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}