-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"name": "quark-design",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/hellof2e/quark-design",
"author": "hello",
"license": "MIT",
"type": "module",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"quarkd/@open-wc/**",
"quarkd/sinon",
"quarkd/@esm-bundle"
]
},
"scripts": {
"init": "yarn && yarn run link && cd example && yarn",
"dev": "cd example && yarn run dev",
"link": "node ./scripts/link",
"codeformat": "prettier --write * --cache",
"clean": "lerna clean -y",
"prepare": "husky install",
"copydocs2vue": "node ./scripts/copydocs2vue",
"copydocs2react": "node ./scripts/copydocs2react",
"push2io": "node ./scripts/push2io",
"release:patch": "node ./scripts/publish patch",
"release:minor": "node ./scripts/publish minor",
"release:major": "node ./scripts/publish major",
"test": "cd packages/quarkd && yarn run test"
},
"devDependencies": {
"@commitlint/cli": "^10.0.0",
"@commitlint/config-conventional": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^7.23.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.8.0",
"eslint-visitor-keys": "2",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"lerna": "^5.1.8",
"lint-staged": "^10.5.4",
"ora": "^5.1.2",
"prettier": "^2.8.7",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"vue": "^3.0.5",
"vue-router": "^4.0.4"
},
"lint-staged": {
"*.md": "prettier --write --cache",
"*.{ts,tsx,js,vue,scss}": "prettier --write --cache"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}