-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "ease",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"test:playwright": "playwright test",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path ../.gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@arco-design/web-vue": "^2.57.0",
"@vueuse/core": "^13.1.0",
"axios": "^1.9.0",
"echarts": "^5.6.0",
"vue": "^3.5.13",
"vue-echarts": "^7.0.3",
"vue-i18n": "^11.1.3",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^6.0.8",
"@playwright/test": "^1.52.0",
"@rushstack/eslint-patch": "^1.11.0",
"@tsconfig/node20": "^20.1.5",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.15.3",
"@vitejs/plugin-vue": "^5.2.3",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.26.0",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-vue": "^10.1.0",
"jsdom": "^26.1.0",
"less": "^4.3.0",
"npm-run-all2": "^8.0.1",
"prettier": "^3.5.3",
"typescript": "~5.8.3",
"vite": "^6.3.4",
"vitest": "^3.1.2",
"vue-tsc": "^2.2.10"
}
}