forked from uPortal-Project/uPortal-web-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.29 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"private": true,
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.0",
"@commitlint/config-lerna-scopes": "^7.0.0",
"@commitlint/travis-cli": "^7.0.0",
"eslint": "^5.0.0",
"eslint-config-google": "^0.9.1",
"lerna": "^2.11.0",
"lint-staged": "^7.0.5",
"npm-run-all": "^4.1.2",
"prettier-eslint-cli": "^4.7.1",
"prettier-stylelint": "^0.4.2",
"remark-cli": "^5.0.0",
"remark-preset-lint-recommended": "^3.0.1",
"remark-validate-links": "^7.0.0",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0",
"yorkie": "^1.0.3"
},
"scripts": {
"ci:commitlint": "commitlint-travis",
"format": "npm-run-all format:*",
"format:js": "prettier-eslint --write **/*.{js,jsx,vue}",
"format:md": "prettier --write **/*.md",
"format:css": "prettier-stylelint --write **/*.{css,scss}",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --ignore-path=.gitignore",
"lint:css": "stylelint **.{css,scss,vue}",
"lint:md": "remark --frail *.md @uportal/*/**.md",
"start": "lerna run start",
"test": "npm-run-all test:* lint:*",
"test:packages": "lerna run test"
},
"workspaces": [
"@uportal/*"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended",
"google"
]
},
"gitHooks": {
"commit-msg": "commitlint -e",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": "prettier-eslint --write",
"*.{css,scss}": "prettier-stylelint --write",
"*.{md,json}": "prettier --write"
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"remarkConfig": {
"plugins": [
"preset-lint-recommended",
"validate-links",
[
"remark-lint-list-item-indent",
"mixed"
]
]
},
"renovate": {
"extends": [
"schedule:weekly",
"group:all",
":rebaseStalePrs",
":preserveSemverRanges",
":semanticPrefixChore",
":ignoreUnstable",
":renovatePrefix"
]
},
"dependencies": {
"@vue/eslint-config-prettier": "^3.0.0-beta.15",
"babel-eslint": "^8.2.3",
"eslint-plugin-vue": "^4.5.0"
}
}