-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.31 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.31 KB
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
72
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@vue",
"**/@vue/**"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean && lerna clean -y",
"lint:tsc": "tsc --noEmit",
"lint:script": "eslint --ext .ts,.tsx,.js,.jsx packages",
"lint:style": "stylelint \"packages/**/*.scss\" --syntax scss",
"lint": "yarn lint:script && yarn lint:style",
"test": "lerna exec --no-private -- yarn test",
"build:vue": "lerna exec --scope=@junice/vue2 -- yarn build",
"build:site": "lerna exec --scope=site -- yarn build",
"release:site": "node scripts/release.mjs",
"serve": "lerna exec --scope=@junice/vue2 -- yarn serve",
"serve:site": "lerna exec --scope=site -- yarn serve",
"deploy:build": "yarn prebuild && lerna exec --scope site -- yarn build -p",
"deploy": "lerna exec --scope site -- gh-pages -d assets",
"release": "lerna publish",
"prepublishOnly": "yarn lint && yarn build && yarn test",
"prettier": "prettier -c --write '**/*'",
"pretty-quick": "pretty-quick",
"bundlesize": "lerna run bundlesize",
"sort": "npx sort-package-json \"package.json\" \"packages/*/package.json\"",
"prepare": "husky install",
"build:docs": "pnpm --filter vue3 docs:build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"babel-eslint": "10.1.0",
"browserslist": "^4.16.4",
"bundlesize": "^0.18.1",
"concurrently": "^6.0.2",
"eslint": "7.10.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.1.2",
"husky": "^8.0.0",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"stylelint": "13.8.0",
"stylelint-scss": "^3.18.0",
"typescript": "4.0.2"
},
"dependencies": {
"gh-pages": "^4.0.0"
}
}