-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.63 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
{
"name": "anolis-workbench-ui",
"private": true,
"type": "module",
"version": "0.11.7",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check",
"format": "prettier --write \"src/**\"",
"format:check": "prettier --check \"src/**\"",
"lint": "eslint src",
"test:unit": "vitest run --config vitest.config.ts",
"test:unit:watch": "vitest --config vitest.config.ts",
"test:unit:coverage": "vitest run --config vitest.config.ts --coverage",
"test:components": "vitest run --config vitest.components.config.ts",
"test:components:watch": "vitest --config vitest.components.config.ts",
"test:components:coverage": "vitest run --config vitest.components.config.ts --coverage",
"bundle:size": "node scripts/report-bundle-size.mjs",
"smoke": "playwright test --config=playwright.config.ts --reporter=line",
"smoke:install": "playwright install --with-deps chromium firefox"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@types/node": "^25.9.3",
"@typescript-eslint/eslint-plugin": "^8.61.0",
"@typescript-eslint/parser": "^8.58.2",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.5.0",
"eslint-plugin-svelte": "^3.19.0",
"happy-dom": "^20.10.3",
"prettier": "^3.8.4",
"prettier-plugin-svelte": "^4.1.0",
"svelte": "^5.56.3",
"svelte-check": "^4.6.0",
"typescript": "^7.0.0",
"vite": "^8.0.16",
"vitest": "^4.1.4"
}
}