-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 2.34 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
{
"name": "phaidra-vue-components",
"version": "0.10.0",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"build-bundle": "vue-cli-service build --target lib --name phaidra-vue-components ./src/components/index.js",
"svg": "vsvg -s ./src/svg-icons -t ./src/compiled-icons"
},
"main": "./dist/phaidra-vue-components.common.js",
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"dependencies": {
"autolinker": "^3.14.3",
"axios": "^0.21.2",
"base-64": "^0.1.0",
"file-saver": "^2.0.5",
"leaflet-geosearch": "^3.0.6",
"moment": "^2.29.4",
"ms": "^2.1.3",
"vue": "^2.6.12",
"vue-i18n": "^8.18.2",
"vue-json-pretty": "^1.6.3",
"vue-router": "^3.1.3",
"vue-slicksort": "^1.1.3",
"vue-the-mask": "^0.11.1",
"vue2-leaflet": "^2.6.0",
"vue2-leaflet-geosearch": "^1.0.6",
"vuetify": "^2.7.1",
"vuex": "^3.4.0"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"eslint-plugin-vuetify": "^1.0.0-beta.7",
"sass": "^1.26.10",
"sass-loader": "^7.3.1",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-vuetify": "^0.6.3",
"vue-svgicon": "^3.2.8",
"vue-template-compiler": "^2.6.12",
"vuetify-loader": "^1.6.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"standard"
],
"plugins": [
"vuetify"
],
"rules": {
"no-console": "off",
"vue/no-use-v-if-with-v-for": 0,
"vuetify/no-deprecated-classes": "error",
"vuetify/grid-unknown-attributes": "error",
"vuetify/no-legacy-grid": "error"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/phaidra/phaidra-vue-components.git"
}
}