forked from evcc-io/evcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.26 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.26 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "evcc",
"description": "evcc UI",
"author": "evcc-io",
"scripts": {
"build": "vite build",
"test": "cross-env TZ=Europe/Berlin vitest",
"lint": "npm run lint:prettier && npm run lint:eslint && npm run lint:tsc && npm run lint:i18n",
"lint:prettier": "prettier assets tests **/*.{yaml,sh} i18n/*.json --write",
"lint:eslint": "eslint --fix --max-warnings=0",
"lint:tsc": "vue-tsc --noEmit",
"lint:i18n": "tsx i18n/check.ts",
"dev": "vite",
"playwright": "playwright test --ui",
"simulator": "vite tests/simulator",
"storybook": "storybook dev -p 6006",
"license": "license-compliance --production --report detailed --allow \"MIT;Apache-2.0;ISC;BSD-2-Clause;BSD-3-Clause\""
},
"type": "module",
"main": "index.js",
"dependencies": {
"@formkit/drag-and-drop": "^0.5.3",
"@guolao/vue-monaco-editor": "1.5.5",
"@h2d2/shopicons": "^1.9.0",
"@popperjs/core": "^2.11.8",
"@unhead/vue": "^2.0.19",
"axios": "^1.13.2",
"bootstrap": "^5.3.8",
"canvas-confetti": "^1.9.4",
"chart.js": "^4.5.1",
"chartjs-adapter-dayjs-4": "^1.0.4",
"chartjs-plugin-datalabels": "^2.2.0",
"countup.js": "^2.9.0",
"dayjs": "^1.11.19",
"monaco-editor": "0.52.2",
"smoothscroll-polyfill": "^0.4.4",
"snarkdown": "^2.0.0",
"vue": "^3.2.29",
"vue-chartjs": "^5.3.3",
"vue-i18n": "^11.2.2",
"vue-router": "^5.0.2"
},
"overrides": {
"@monaco-editor/loader": "1.5.0"
},
"engines": {
"npm": ">=10.0.0",
"node": ">=24.0.0"
},
"license": "MIT",
"repository": "github:evcc-io/evcc",
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.13.0",
"@jest/types": "^30.2.0",
"@playwright/test": "^1.57.0",
"@storybook/vue3": "^10.0.8",
"@storybook/vue3-vite": "^10.1.10",
"@types/body-parser": "^1.19.6",
"@types/bootstrap": "^5.2.10",
"@types/canvas-confetti": "^1.9.0",
"@types/kill-port": "^2.0.3",
"@types/smoothscroll-polyfill": "^0.3.4",
"@types/wait-on": "^5.3.4",
"@types/ws": "^8.18.1",
"@vitejs/plugin-legacy": "^7.2.1",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/compiler-sfc": "^3.2.30",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"body-parser": "^2.2.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-vue": "^10.6.2",
"globals": "^17.0.0",
"happy-dom": "^20.0.11",
"jiti": "^2.6.1",
"kill-port": "^2.0.1",
"license-compliance": "^3.0.1",
"mqtt": "^5.14.1",
"prettier": "^3.7.4",
"prettier-plugin-sh": "^0.18.0",
"prettier-plugin-sort-json": "^4.1.1",
"rollup-plugin-visualizer": "^6.0.5",
"storybook": "^10.1.10",
"terser": "^5.44.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint-language-service": "^5.0.5",
"vite": "^7.3.0",
"vitest": "^4.0.16",
"vue-eslint-parser": "^10.2.0",
"vue-hot-reload-api": "^2.3.4",
"vue-tsc": "^3.1.8",
"wait-on": "^9.0.3",
"ws": "^8.18.3"
}
}