-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.46 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
{
"name": "energy-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"test:unit": "vue-cli-service test:unit",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"build-stage": "vite build --mode staging",
"start": "bash start_service.sh",
"test": "vue-cli-service test:unit --ci --detectOpenHandles",
"frontend-badge": "make-coverage-badge",
"backend-badge": "make-coverage-badge --report-path './backend/coverage/coverage-summary.json' --output-path './backend/coverage/badge.svg'",
"make-badges": "npm run frontend-badge && npm run backend-badge",
"prettier": "prettier --write **/*.{js,json,html,md,css,scss,vue}",
"format": "npm-run-all --continue-on-error prettier \"lint -- --fix\""
},
"dependencies": {
"ajv": "^6.11.0",
"autoprefixer": "^10.4.20",
"aws-lambda-multipart-parser": "^0.1.3",
"axios": "^0.18.1",
"chart.js": "^2.9.3",
"element-ui": "^2.13.0",
"json-loader": "^0.5.7",
"jszip": "^3.2.2",
"leaflet": "^1.6.0",
"make-coverage-badge": "^1.2.0",
"osmtogeojson": "^3.0.0-beta.4",
"prettier": "^3.0.1",
"raw-loader": "^4.0.0",
"vite": "^4.5.5",
"vite-plugin-vue2": "^2.0.3",
"vue": "2.7",
"vue-async-computed": "^3.8.2",
"vue-chartjs": "^3.5.0",
"vue-i18n": "^8.15.3",
"vue-router": "^3.1.5",
"vue2-leaflet": "^1.2.3",
"vuex": "^3.1.2"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-strict-vue": "^1.0.0",
"eslint-plugin-vue": "^8.7.1",
"fake-indexeddb": "^3.1.2",
"jest": "^24.9.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"sass": "^1.57.1",
"vite-plugin-vue2-svg": "^0.4.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}