-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.07 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.07 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"dependencies": {
"bulma-stylus": "^0.9.2-rc.1",
"cross-env": "^7.0.2",
"docsify": "^4.13.0",
"docsify-copy-code": "^2.1.1",
"docsify-pagination": "^2.10.1",
"docsify-tabs": "^1.6.0",
"docsify-themeable": "^0.9.0",
"inline-svg": "^2.2.3",
"laravel-mix": "^6.0.49",
"marked": "^4.2.12",
"normalize": "^0.3.1",
"prismjs": "^1.29.0",
"vue": "^2.7.14",
"vue-smooth-reflow": "^0.1.12",
"vue-typer": "^1.2.0"
},
"resolutions": {
"docsify/marked": "^2.0.0"
},
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"precommit": "lint-staged",
"lint-fix": "xo --fix",
"lint": "npm run lint:stylus && npm run lint:js",
"lint:js": "xo",
"lint:stylus": "stylint src/stylus/"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.34.0",
"lint-staged": "^13.1.2",
"stylint": "^2.0.0",
"stylus-loader": "^7.1.0",
"vue-loader": "^15.10.1",
"vue-template-compiler": "^2.7.14",
"xo": "^0.53.1"
},
"xo": {
"envs": [
"browser"
],
"ignores": [
"node_modules/**/*.*",
"webpack.mix.js"
],
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false
},
"rules": {
"import/no-unassigned-import": "off",
"max-params": [
"warn",
{
"max": 6
}
],
"no-multiple-empty-lines": [
"error",
{
"max": 2
}
],
"no-await-in-loop": "off",
"no-new": "off",
"no-return-await": "off",
"object-curly-spacing": [
"error",
"always"
],
"unicorn/filename-case": [
"error",
{
"cases": {
"camelCase": true,
"pascalCase": true
}
}
],
"unicorn/numeric-separators-style": "off"
}
},
"lint-staged": {
"!(*test).js": [
"npm run lint"
]
}
}