-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.78 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
{
"name": "data-big-screen",
"version": "1.0.0",
"private": true,
"description": "教学向数据大屏可视化项目(国风科技风),基于 Vue 3 + Vite + TypeScript + ECharts",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1 --port 10001",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --host 127.0.0.1 --port 10001",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . && stylelint \"src/**/*.{css,vue}\"",
"lint:fix": "eslint . --fix && stylelint \"src/**/*.{css,vue}\" --fix",
"format": "prettier --write \"src/**/*.{ts,vue,css}\" \"scripts/**/*.mjs\" \"*.{ts,js,json,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"screenshot": "node scripts/capture-dashboard.mjs",
"screenshot:dashboard": "node scripts/capture-dashboard.mjs",
"prepare:msw": "msw init public/ --save"
},
"dependencies": {
"axios": "^1.7.9",
"echarts": "^5.5.1",
"pinia": "^2.3.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.14.0",
"jsdom": "^25.0.1",
"msw": "^2.7.0",
"postcss-html": "^1.7.0",
"prettier": "^3.4.2",
"stylelint": "^16.12.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "~5.6.3",
"typescript-eslint": "^8.19.0",
"vite": "^6.0.7",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
},
"msw": {
"workerDirectory": [
"public"
]
},
"engines": {
"node": ">=18.0.0"
}
}