-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
85 lines (85 loc) · 1.93 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
{
"name": "json-schema-check",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-brands-svg-icons": "^5.8.2",
"@fortawesome/free-regular-svg-icons": "^5.8.1",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/vue-fontawesome": "^0.1.6",
"ajv": "^6.9.1",
"ajv-async": "^1.0.1",
"bootstrap-vue": "^2.0.0-rc.12",
"file": "^0.2.2",
"jsonlint": "^1.6.3",
"lodash": "^4.17.13",
"lz-string": "^1.4.4",
"lzma": "^2.3.2",
"style-loader": "^0.23.1",
"system": "^2.0.1",
"vue": "^2.5.22",
"vue-analytics": "^5.16.4",
"vue-clipboard2": "^0.3.0",
"vue-codemirror": "^4.0.6",
"vue-loading-overlay": "^3.2.0",
"vue-router": "^3.0.6",
"yourls": "^1.0.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-service": "^4.1.2",
"babel-eslint": "^10.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-vue": "^6.1.2",
"prettier": "^1.18.2",
"vue-template-compiler": "^2.5.21"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"plugins": [
"vue"
],
"extends": [
"plugin:vue/essential",
"plugin:vue/recommended",
"eslint:recommended",
"prettier"
],
"rules": {
"vue/max-attributes-per-line": [
"error",
{
"singleline": 5,
"multiline": {
"max": 1,
"allowFirstLine": true
}
}
]
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}