This repository was archived by the owner on May 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.12 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
{
"name": "agp_installer",
"version": "0.1.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"testGlobal": "mocha ./tests/global.spec.ts"
},
"dependencies": {
"@artemeon/vue-library": "github:artemeon/frontend-components",
"@types/chart.js": "^2.7.52",
"axios": "^0.18.0",
"bootstrap": "^4.3.1",
"chart.js": "^2.8.0",
"jquery": "^3.3.1",
"messageformat": "^2.0.5",
"node-sass": "^4.11.0",
"popper.js": "^1.15.0",
"sass-loader": "^7.1.0",
"toastr": "^2.1.4",
"uuid": "^3.3.2",
"vue": "^2.6.8",
"vue-class-component": "^6.0.0",
"vue-i18n": "^8.9.0",
"vue-property-decorator": "^7.0.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-class": "^0.3.1"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"@types/chai": "^4.1.0",
"@types/jquery": "^3.3.29",
"@types/mocha": "^5.2.6",
"@types/toastr": "^2.1.37",
"@vue/cli-plugin-babel": "^3.4.0",
"@vue/cli-plugin-e2e-nightwatch": "^3.5.1",
"@vue/cli-plugin-eslint": "^3.4.0",
"@vue/cli-plugin-typescript": "^3.4.0",
"@vue/cli-plugin-unit-mocha": "^3.4.0",
"@vue/cli-service": "^3.5.2",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-eslint": "^10.0.1",
"chai": "^4.1.2",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"mocha": "^6.1.4",
"resolve-url-loader": "^3.1.0",
"typescript": "~3.2.2",
"vue-template-compiler": "^2.6.8"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard",
"@vue/typescript"
],
"rules": {},
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}