-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
53 lines (53 loc) · 1000 Bytes
/
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
{
"private": true,
"name": "create-portfolio",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"test": "xo && lerna run test"
},
"devDependencies": {
"eslint-config-prettier": "^6.0.0",
"eslint-config-rem": "^4.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.2.2",
"husky": "^3.0.0",
"lerna": "^3.14.1",
"lint-staged": "^9.0.0",
"prettier": "^1.17.1",
"xo": "^0.24.0"
},
"workspaces": [
"packages/*"
],
"xo": {
"extensions": [
"vue"
],
"extends": [
"rem",
"plugin:vue/recommended",
"prettier/vue",
"plugin:prettier/recommended"
],
"rules": {
"import/no-unassigned-import": "off",
"unicorn/filename-case": "off"
}
},
"lint-staged": {
"*.{json,md}": [
"prettier --write",
"git add"
],
"*.{js,vue}": [
"xo --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}