-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
72
73
{
"private": true,
"workspaces": [
"packages/@vssue/*",
"packages/vssue",
"packages/docs"
],
"scripts": {
"build": "lerna run build --stream --ignore docs",
"build:docs": "yarn workspace docs build",
"dev": "yarn workspace vssue dev",
"dev:docs": "yarn workspace docs dev",
"postinstall": "lerna run build --stream --ignore docs --ignore vssue",
"lint": "eslint --ext .js,.ts,.vue packages/",
"release": "node scripts/release.js",
"staging": "yarn workspace vssue staging",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"git add"
],
"*.{json,md,yml}": [
"prettier --write",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/config-lerna-scopes": "^8.2.0",
"@types/jest": "^24.0.25",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"conventional-changelog-cli": "^2.0.21",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.2",
"execa": "^1.0.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lerna": "^3.14.1",
"lint-staged": "^8.1.7",
"prettier": "^1.19.1",
"rimraf": "^2.6.3",
"sort-package-json": "^1.22.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
}
}