-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.31 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
{
"name": "admin_front_ts",
"private": true,
"version": "1.0.7",
"type": "module",
"engines": {
"node": ">=24.18.0 <25",
"npm": "11.16.0"
},
"packageManager": "npm@11.16.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "vue-tsc -b",
"build:check": "vue-tsc -b && vite build",
"build:analyze": "cross-env ANALYZE=true vite build",
"bundle:check": "node ./scripts/analyze-bundle.mjs --check",
"bundle:baseline": "node ./scripts/analyze-bundle.mjs --write-baseline",
"locale:generate": "node ./scripts/generate-locale-types.mjs",
"locale:check": "node ./scripts/generate-locale-types.mjs --check",
"contract:sync": "node ./scripts/sync-admin-contract.mjs",
"contract:generate": "node ./scripts/generate-admin-types.mjs",
"contract:check": "node ./scripts/check-admin-contract.mjs",
"check:browser-only": "node ./scripts/check-browser-only.mjs",
"routes:generate": "node ./scripts/generate-view-registry.mjs",
"routes:check": "node ./scripts/generate-view-registry.mjs --check",
"lint": "eslint . --max-warnings 0",
"lint:quality": "node ./scripts/quality-checks.mjs",
"test:architecture": "node ./scripts/audit-test-architecture.mjs",
"audit:dependencies": "npm audit --omit=dev --audit-level=high",
"verify:frontend": "npm run check:browser-only && npm run contract:check && npm run routes:check && npm run locale:check && npm run lint -- --max-warnings 0 && npm run lint:quality && npm run typecheck && npm test -- --coverage && npm run build && npm run bundle:check && npm run test:architecture && npm run audit:dependencies",
"preview": "vite preview",
"test": "vitest run"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@iconify/vue": "^5.0.0",
"@vueuse/core": "^11.0.3",
"@wangeditor/editor-for-vue": "^5.1.12",
"@wangeditor/plugin-md": "^1.0.0",
"axios": "^1.18.1",
"cos-js-sdk-v5": "^1.8.7",
"dompurify": "3.4.12",
"echarts": "^6.1.0",
"element-plus": "^2.13.0",
"go-captcha-vue": "^2.0.6",
"highlight.js": "^11.11.1",
"markdown-it": "^14.3.0",
"pinia": "^3.0.2",
"qrcode": "^1.5.4",
"vue": "^3.5.24",
"vue-i18n": "^9.13.0",
"vue-router": "^4.5.0",
"zod": "4.4.3"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/qrcode": "^1.5.6",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-v8": "4.0.7",
"@vue/compiler-sfc": "^3.5.26",
"@vue/test-utils": "2.4.11",
"@vue/tsconfig": "^0.8.1",
"axe-core": "4.12.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-plugin-vue": "^10.5.1",
"globals": "^16.5.0",
"happy-dom": "20.10.6",
"jsdom": "29.1.1",
"msw": "2.15.0",
"openapi-typescript": "7.13.0",
"rollup-plugin-visualizer": "^6.0.5",
"sass": "^1.83.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.3",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^31.0.0",
"vite": "^8.0.3",
"vitest": "^4.0.7",
"vue-tsc": "^3.1.4"
},
"overrides": {
"cos-js-sdk-v5": {
"fast-xml-parser": "5.10.1"
},
"follow-redirects": "1.16.0",
"form-data": "4.0.6",
"linkify-it": "6.0.0",
"lodash": "4.18.1",
"lodash-es": "4.18.1",
"postcss": "8.5.20",
"preact": "10.29.7"
}
}