This repository has been archived by the owner on Feb 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.64 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
{
"name": "exlibris",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint --no-fix --max-warnings 0",
"fix": "vue-cli-service lint"
},
"dependencies": {
"@popperjs/core": "^2.4.4",
"animate.css": "^3.7.2",
"axios": "^0.19.2",
"bootstrap": "^4.5.0",
"bootstrap-vue": "^2.15.0",
"core-js": "^3.6.4",
"portal-vue": "^2.1.7",
"vue": "^2.6.11",
"vue-i18n": "^8.15.4",
"vue-resource": "^1.5.1",
"vue-router": "^3.1.6"
},
"devDependencies": {
"@babel/compat-data": "^7.8.0",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@vue/cli-plugin-babel": "^4.2.0",
"@vue/cli-plugin-eslint": "^4.2.0",
"@vue/cli-service": "^4.2.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.1.2",
"eslint-plugin-vue-i18n": "^0.3.0",
"standard": "^14.3.1",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"standard",
"plugin:vue/recommended",
"plugin:vue-i18n/recommended",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"vue-i18n/no-dynamic-keys": "error",
"vue-i18n/no-unused-keys": "error",
"vue-i18n/no-raw-text": "error",
"vue-i18n/no-v-html": "error"
},
"settings": {
"vue-i18n": {
"localeDir": "./src/components/**/locale.json"
}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}