-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
123 lines (123 loc) · 3.31 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "globecorr",
"version": "0.1.0",
"private": true,
"scripts": {
"preserve": "gulp",
"prebuild": "gulp",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"ci": "yarn install --frozen-lockfile"
},
"dependencies": {
"@amcharts/amcharts4": "^4.10.25",
"core-js": "^3.6.4",
"papaparse": "^5.1.1",
"tabulator-tables": "^4.5.3",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.0",
"vue-router": "^3.1.5",
"vue-tabulator": "^1.2.2",
"vuetify": "^2.6.6"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@types/papaparse": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-router": "~4.2.0",
"@vue/cli-plugin-typescript": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-typescript": "^5.0.1",
"babel-eslint": "^10.0.3",
"deepmerge": "^4.2.2",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.1.2",
"fibers": "^4.0.2",
"frontmatter-markdown-loader": "^3.3.0",
"gulp": "^4.0.2",
"gulp-concat-json-to-array": "^0.0.1",
"gulp-header": "^2.0.9",
"gulp-markdown-to-json": "^1.1.0",
"gulp-markdownit": "^1.0.3",
"gulp-rename": "^2.0.0",
"html-loader": "^0.5.5",
"markdown-it": "^11.0.0",
"markdown-it-deflist": "^2.0.3",
"markdown-it-loader": "^0.7.0",
"material-design-icons-iconfont": "^5.0.1",
"node-sass": "^4.12.0",
"sass": "^1.26.2",
"sass-loader": "^8.0.2",
"string-replace-loader": "^2.3.0",
"typescript": "^3.8.3",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.4.3",
"webpack": "^4.42.0",
"wrap-loader": "^0.2.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:vue/recommended",
"eslint:recommended",
"@vue/typescript"
],
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {
"vue/camelcase": "warn",
"@typescript-eslint/camelcase": "warn",
"@typescript-eslint/ban-ts-ignore": "warn",
"@typescript-eslint/explicit-function-return-type": [
"warn",
{
"allowTypedFunctionExpressions": true
}
],
"vue/comma-dangle": "error",
"vue/component-tags-order": [
"error",
{
"order": [
"template",
"script",
"style"
]
}
],
"vue/eqeqeq": "warn",
"vue/key-spacing": "warn",
"vue/no-deprecated-scope-attribute": "warn",
"vue/no-deprecated-slot-attribute": "warn",
"vue/no-deprecated-slot-scope-attribute": "warn",
"vue/padding-line-between-blocks": "warn",
"vue/valid-v-bind-sync": "error",
"vue/valid-v-slot": "error",
"vue/singleline-html-element-content-newline": "off",
"no-case-declarations": "off",
"vue/max-attributes-per-line": [
"error",
{
"singleline": 6
}
]
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}