-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.25 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.25 KB
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
{
"name": "energy-dashboard",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"test:unit": "vue-cli-service test:unit",
"lint": "eslint --fix src backend",
"build-stage": "vite build --mode staging",
"start": "bash start_service.sh",
"test": "vue-cli-service test:unit --ci --detectOpenHandles",
"prettier": "prettier --write \"**/*.{js,json,html,md,css,scss,vue}\"",
"format": "npm-run-all --continue-on-error prettier lint",
"format:check": "npm-run-all prettier:check lint:check",
"prettier:check": "prettier --check \"**/*.{js,json,html,md,css,scss,vue}\"",
"lint:check": "eslint src backend --max-warnings=0"
},
"dependencies": {
"@vue-leaflet/vue-leaflet": "^0.10.1",
"aws-lambda-multipart-parser": "^0.1.3",
"axios": "^1.13.2",
"chart.js": "^4.5.1",
"chartjs-adapter-luxon": "^1.3.1",
"element-plus": "^2.12.0",
"jszip": "^3.2.2",
"leaflet": "^1.9.4",
"luxon": "^3.7.2",
"mitt": "^3.0.1",
"osmtogeojson": "^3.0.0-beta.4",
"vue": "^3.5.25",
"vue-chartjs": "^5.3.3",
"vue-router": "^4.6.4",
"vuex": "^4.1.0"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/luxon": "^3.7.1",
"@vitejs/plugin-vue": "^6.0.3",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-vue": "^10.6.2",
"fake-indexeddb": "^6.2.5",
"jest": "^24.9.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.4",
"sass": "^1.93.2",
"vite": "^7.2.7",
"vite-svg-loader": "^5.1.0",
"vue-eslint-parser": "^10.2.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"
]
}