This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.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
{
"name": "oyd-databud",
"version": "1.0.0",
"license": "MIT",
"private": "true",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"dockerize": "docker build -t gebsl/oyd-databud .",
"deploy": "sh ./scripts/deploy.sh",
"lint": "vue-cli-service lint"
},
"dependencies": {
"bootstrap-vue": "^2.23.1",
"expression-eval": "^5.0.0",
"handlebars": "^4.7.7",
"soya-js": "^0.5.19",
"vaultifier": "^3.0.0",
"vue": "^2.7.14",
"vue-bootstrap-typeahead": "^0.2.6",
"vue-router": "^3.6.5",
"vuex": "^3.6.2",
"zingchart-vue": "^2.0.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "^4.5.7",
"@vue/cli-plugin-vuex": "^4.5.7",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-typescript": "^5.0.2",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"typescript": "^4.5.5",
"vue-cli-plugin-webpack-bundle-analyzer": "~2.0.0",
"vue-template-compiler": "^2.7.14"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {
"no-unused-vars": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}