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
108 lines (108 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.33 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
106
107
108
{
"name": "evcc",
"description": "evcc UI",
"author": "evcc-io",
"scripts": {
"build": "vp build",
"test": "cross-env TZ=Europe/Berlin NODE_OPTIONS=--no-experimental-webstorage vp test",
"lint": "vp run lint:format && vp run lint:lint && vp run lint:tsc && vp run lint:i18n",
"lint:format": "vp fmt assets tests **/*.{yaml,sh} i18n/*.json --write",
"lint:lint": "vp lint --fix --max-warnings=0",
"lint:tsc": "vue-tsc --noEmit",
"lint:i18n": "tsx i18n/check.ts",
"dev": "vp dev",
"openapi": "tsx scripts/state-schema/index.ts",
"playwright": "playwright install && playwright test --ui",
"playwright:ci": "cross-env CI=true playwright test",
"simulator": "vp dev 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;0BSD\""
},
"type": "module",
"main": "index.js",
"dependencies": {
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/language": "^6.12.4",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.7",
"@formkit/drag-and-drop": "^0.6.1",
"@h2d2/shopicons": "^1.9.1",
"@lezer/highlight": "^1.2.3",
"@popperjs/core": "^2.11.8",
"@unhead/vue": "^2.1.16",
"axios": "^1.18.1",
"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.10.1",
"dayjs": "^1.11.21",
"echarts": "^6.1.0",
"qrcode": "^1.5.4",
"smoothscroll-polyfill": "^0.4.4",
"snarkdown": "^2.0.0",
"vue": "^3.5.40",
"vue-chartjs": "^5.3.4",
"vue-i18n": "^11.4.8",
"vue-router": "^5.2.0"
},
"engines": {
"npm": ">=10.0.0",
"node": ">=26.0.0"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": ">=10.0.0"
}
},
"license": "MIT",
"repository": "github:evcc-io/evcc",
"devDependencies": {
"@playwright/test": "^1.62.0",
"@redocly/openapi-core": "^2.38.0",
"@storybook/vue3": "^10.4.4",
"@storybook/vue3-vite": "^10.5.5",
"@types/body-parser": "^1.19.6",
"@types/bootstrap": "^5.2.11",
"@types/canvas-confetti": "^1.9.0",
"@types/kill-port": "^2.0.3",
"@types/qrcode": "^1.5.6",
"@types/smoothscroll-polyfill": "^0.3.4",
"@types/wait-on": "^5.3.4",
"@types/ws": "^8.18.1",
"@vitejs/plugin-legacy": "^8.2.2",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/compiler-sfc": "^3.5.38",
"@vue/test-utils": "^2.4.11",
"@vue/tsconfig": "^0.9.1",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"body-parser": "^2.3.0",
"cross-env": "^10.1.0",
"happy-dom": "^20.11.1",
"kill-port": "^2.0.1",
"license-compliance": "^3.0.1",
"mqtt": "^5.15.2",
"rollup-plugin-visualizer": "^7.0.1",
"storybook": "^10.5.5",
"terser": "^5.49.0",
"ts-json-schema-generator": "^2.9.0",
"tsx": "^4.23.1",
"typescript": "^5.9.3",
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.6",
"vitest": "4.1.10",
"vue-hot-reload-api": "^2.3.4",
"vue-tsc": "^3.3.8",
"wait-on": "^9.1.0",
"ws": "^8.21.1",
"yaml": "^2.9.0",
"vite-plus": "0.2.6"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.6",
"vitest": "4.1.10"
}
}