forked from hellof2e/quark-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "QuarkDesign",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "",
"author": "hello",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "node ./scripts/dev",
"build": "node ./scripts/build",
"link": "node ./scripts/link",
"clean": "lerna clean -y",
"prepare": "husky install",
"pushmd2AppQuarkDoc": "node ./scripts/pushmd2AppQuarkDoc",
"push2GithubWebsite": "node ./scripts/push2GithubWebsite",
"release:patch": "node ./scripts/publish patch",
"release:minor": "node ./scripts/publish minor",
"release:major": "node ./scripts/publish major",
"build2": " lerna run build --scope @quarkd/quark-react"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"commitizen": "^4.2.4",
"commitlint": "^17.0.3",
"commitlint-config-cz": "^0.13.3",
"cz-customizable": "^6.9.0",
"husky": "^8.0.1",
"lerna": "^5.1.8",
"ora": "^5.1.2",
"shelljs": "^0.8.5",
"vue": "^3.0.5",
"vue-router": "^4.0.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}