-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
80 lines (80 loc) · 1.98 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
{
"name": "rest-data-connector",
"version": "1.0.6",
"private": true,
"description": "A REST API Data Connector for Tableau with Swagger 2.0 & OpenApi 3.0 support.",
"author": "Niranjan Rajendran <me@niranjan.io>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/vue-fontawesome": "^2.0.6",
"bootstrap-vue": "^2.21.2",
"browserslist": "^4.17.5",
"core-js": "^3.6.5",
"dataobject-parser": "^1.2.1",
"generate-schema": "^2.6.0",
"jsonpath": "^1.1.1",
"lodash-es": "^4.17.21",
"raven-js": "^3.27.2",
"url-join": "^4.0.1",
"vue": "^2.6.14",
"vue-json-tree-view": "^2.1.6",
"vue-notification": "^1.3.20",
"vue-resource": "^1.5.3",
"vue-router": "^3.5.3",
"vue-uuid": "^2.0.2",
"vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.14",
"@vue/cli-plugin-eslint": "~4.5.14",
"@vue/cli-service": "~4.5.14",
"babel-eslint": "^10.1.0",
"bootstrap": "^4.5.1",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^7.20.0",
"node-sass": "^6.0.1",
"sass-loader": "^12.3.0",
"vue-template-compiler": "^2.6.14"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off",
"no-prototype-builtins": "off",
"no-useless-escape": "off"
},
"parserOptions": {
"parser": "babel-eslint"
},
"globals": {
"tableau": true
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"license": "GPL-3.0"
}