-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.46 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.46 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
{
"name": "opensilex-vue-extension",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --mode production --target lib src/index.ts",
"lint": "vue-cli-service lint",
"check:browserlist": "yarn add caniuse-lite && yarn remove caniuse-lite",
"check:outdated": "yarn outdated || cd .",
"check:security": "yarn audit || cd ."
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/vue-fontawesome": "^2.0.10",
"core-js": "3.6.5",
"csv-string": "^4.0.1",
"inversify": "^5.0.1",
"node-fetch": "^2.6.0",
"reflect-metadata": "0.1.13",
"vee-validate": "3.4.3",
"vue": "2.6.12",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "9.0.2",
"vue-router": "3.4.9",
"vue-tel-input": "5.3.0",
"vuelayers": "^0.12.6",
"vuex": "^3.1.3",
"whatwg-fetch": "3.4.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.6.0",
"@typescript-eslint/parser": "4.6.0",
"@vue/cli-plugin-babel": "4.5.15",
"@vue/cli-plugin-eslint": "4.5.15",
"@vue/cli-plugin-router": "4.5.15",
"@vue/cli-plugin-typescript": "4.5.15",
"@vue/cli-plugin-vuex": "4.5.15",
"@vue/cli-service": "4.5.15",
"@vue/eslint-config-typescript": "7.0.0",
"eslint": "7.12.1",
"eslint-plugin-vue": "7.1.0",
"sass": "1.28.0",
"sass-loader": "10.0.5",
"terser-webpack-plugin": "5.0.3",
"typescript": "4.0.5",
"vue-template-compiler": "2.6.12"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript"
],
"rules": {
"no-unused-vars": "off",
"no-var": "off",
"prefer-const": "off",
"vue/custom-event-name-casing": "off",
"vue/no-unused-vars": "off"
},
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}