-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 1.73 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
{
"private": true,
"name": "saika-monorepo",
"repository": {
"type": "git",
"url": "2nthony/saika"
},
"workspaces": [
"core",
"plugins/*",
"packages/*",
"themes/*"
],
"author": "2nthony <[email protected]>",
"scripts": {
"lint": "xo",
"test": "npm run lint && echo lol",
"release": "lerna version --conventional-commits",
"website": "poi -s --config website/poi.config.js",
"website:build": "poi --prod --config website/poi.config.js",
"now-build": "npm run website:build"
},
"devDependencies": {
"eslint-config-prettier": "^6.0.0",
"eslint-config-rem": "^4.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.2.3",
"husky": "^3.0.2",
"lerna": "^3.16.4",
"lint-staged": "^9.2.1",
"poi": "^12.7.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.18.2",
"prismjs": "^1.17.1",
"xo": "^0.24.0"
},
"xo": {
"extends": [
"rem",
"plugin:prettier/recommended",
"plugin:vue/essential"
],
"prettier": true,
"envs": [
"browser"
],
"ignores": [
"**/website/**",
"**/dist/**"
],
"globals": [
"__SAIKA_VERSION__",
"__PRISM_VERSION__"
],
"extensions": [
"vue"
],
"rules": {
"unicorn/no-abusive-eslint-disable": "off",
"unicorn/filename-case": "off",
"import/no-unassigned-import": "off",
"require-atomic-updates": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue,css}": [
"xo --fix",
"git add"
],
"*.{md,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"saika-code-block-buttons": "^1.0.1"
}
}