-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.56 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
{
"name": "gkapp",
"version": "8.0.0-b",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build-dev": "vue-cli-service build --mode development",
"translate-extract": "make makemessages && rm src/locales/locale/*/*/app.po~",
"translate-compile": "make translations"
},
"dependencies": {
"axios": "^1.5.1",
"bootstrap-vue": "^2.23.1",
"check-password-strength": "^2.0.10",
"core-js": "^3.33.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.13",
"html2canvas": "^1.4.1",
"html2pdf.js": "^0.10.1",
"jspdf": "^2.5.1",
"register-service-worker": "^1.7.2",
"vue": "^2.7.15",
"vue-chartjs": "^4.1.2",
"vue-gettext": "^2.1.12",
"vue-router": "^3.6.5",
"vue-select": "^3.20.2",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@babel/polyfill": "^7.12.1",
"@vue/cli": "^5.0.0",
"@vue/cli-plugin-babel": "^5.0.0",
"@vue/cli-plugin-eslint": "^5.0.0",
"@vue/cli-plugin-pwa": "^5.0.0",
"@vue/cli-plugin-router": "^5.0.0",
"@vue/cli-plugin-vuex": "^5.0.0",
"@vue/cli-service": "^5.0.0",
"easygettext": "^2.17.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^7.20.0",
"lefthook": "^1.7.16",
"mutationobserver-shim": "^0.3.7",
"popper.js": "^1.16.1",
"portal-vue": "^2.1.7",
"sass": "^1.69.4",
"sass-loader": "^16.0.2",
"vue-cli-plugin-axios": "0.0.4",
"vue-template-compiler": "^2.7.15"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/base",
"plugin:vue/essential",
"plugin:vue/strongly-recommended",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {
"vue/array-bracket-spacing": "warn",
"vue/arrow-spacing": "warn",
"vue/block-spacing": "warn",
"vue/brace-style": "warn",
"vue/camelcase": "off",
"vue/comma-dangle": ["warn", "always-multiline"],
"vue/component-definition-name-casing": ["warn", "PascalCase"],
"vue/component-name-in-template-casing": ["warn", "kebab-case"],
"vue/component-tags-order": "off",
"vue/dot-location": ["warn", "property"],
"vue/eqeqeq": "off",
"vue/key-spacing": "warn",
"vue/keyword-spacing": "warn",
"vue/match-component-file-name": ["warn", {
"extensions": ["vue", "js"]
}],
"vue/max-len": "off",
"vue/no-boolean-default": "off",
"vue/no-deprecated-scope-attribute": "warn",
"vue/no-deprecated-slot-attribute": "warn",
"vue/no-deprecated-slot-scope-attribute": "warn",
"vue/no-empty-pattern": "warn",
"vue/no-irregular-whitespace": "warn",
"vue/no-reserved-component-names": "warn",
"vue/no-restricted-syntax": "warn",
"vue/no-static-inline-styles": "off",
"vue/no-unsupported-features": "warn",
"vue/object-curly-spacing": "warn",
"vue/padding-line-between-blocks": "warn",
"vue/require-default-prop": "off",
"vue/require-direct-export": "warn",
"vue/require-name-property": "warn",
"vue/script-indent": "warn",
"vue/sort-keys": "off",
"vue/space-infix-ops": "warn",
"vue/space-unary-ops": "warn",
"vue/static-class-names-order": "off",
"vue/v-on-function-call": "warn",
"vue/v-slot-style": "warn",
"vue/valid-v-bind-sync": "warn",
"vue/valid-v-slot": "warn"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}