-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.14 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.14 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
{
"name": "eta-vue",
"version": "0.2.0",
"type": "module",
"private": true,
"scripts": {
"build": "vite build",
"check": "run-p format lint types spell test",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "vite",
"format": "prettier --cache --write src/ cypress/ docs/ *.html *.ts *.json *.md --log-level silent",
"lint": "eslint . --cache --fix --ignore-pattern .gitignore",
"preview": "vite preview",
"run": "run-s build preview",
"spell-store": "cspell --cache --quiet --words-only --unique \"src/**/*.{txt,md,html,js,ts,vue,json,yml,py}\" > cspell-unknown-words.txt",
"spell": "cspell --cache --quiet \"src/**/*.{txt,md,html,js,ts,vue,json,yml,py}\" \"docs/*\"",
"test-cov": "vitest --watch=false --coverage",
"test": "vitest --watch=false",
"types": "vue-tsc --build"
},
"dependencies": {
"@fontsource/roboto": "^5.2.10",
"@mdi/font": "^7.4.47",
"echarts": "^5.6.0",
"vue": "^3.5.29",
"vue-echarts": "^7.0.3",
"vue-router": "^4.6.4",
"vuetify": "^3.12.1"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@tsconfig/node22": "^22.0.5",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.11.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-vue": "^6.0.4",
"@vitest/coverage-v8": "^3.2.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"cspell": "^9.7.0",
"cypress": "^15.11.0",
"eslint": "^9.39.3",
"eslint-plugin-cypress": "^5.3.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-sonarjs": "^3.0.7",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vue": "~10.5.1",
"eslint-plugin-vuejs-accessibility": "^2.5.0",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"jsdom": "^27.4.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1",
"unplugin-fonts": "^1.4.0",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-vuetify": "^2.1.3",
"vitest": "^3.2.4",
"vue-tsc": "^3.2.5"
}
}