-
Notifications
You must be signed in to change notification settings - Fork 192
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1022 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1022 Bytes
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
{
"engines": {
"node": "^24.0.0"
},
"dependencies": {
"color": "^5.0.3",
"jquery": "^4.0.0",
"jquery-ui": "^1.14.2",
"pinia": "^3.0.4",
"vue": "^3.5.33"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.2.1",
"eslint-plugin-vue": "^10.9.0",
"globals": "^17.5.0",
"less": "^4.6.4",
"vite": "^8.0.9",
"vitest": "^4.1.5",
"vue-eslint-parser": "^10.4.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run --pool=threads",
"test:coverage": "vitest run --pool=threads --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:install": "playwright install chromium",
"coverage:badge": "node scripts/update-coverage-badge.mjs",
"lint": "eslint src --fix"
}
}