-
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.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "bunx --bun vite --open",
"dev:cc": "bunx --bun vite --force --open",
"build": "tsc && bunx --bun vite build",
"view": "bunx --bun vite preview --open",
"lint": "biome check --fix src",
"test": "vitest run --coverage",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui-host=0.0.0.0",
"e2e:report": "playwright show-report e2e-out/playwright-report",
"prepare": "lefthook install",
"commit": "git add -A && git commit --no-edit",
"squash": "bun scripts/squash.ts && git commit --no-edit --no-verify"
},
"dependencies": {
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@es-proj/utils": "^1.6.10",
"@faker-js/faker": "^10.4.0",
"@playwright/cli": "^0.1.6",
"@playwright/mcp": "^0.0.70",
"@playwright/test": "^1.59.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "^4.1.3",
"@vitest/coverage-v8": "4.1.3",
"code-inspector-plugin": "^1.5.1",
"czg": "^1.12.0",
"knip": "^6.3.1",
"lefthook": "^2.1.5",
"license-checker-rseidelsohn": "^4.4.2",
"typescript": "^6.0.2",
"vite": "^8.0.7",
"vite-plugin-mock-dev-server": "^2.1.1",
"vitest": "^4.1.3"
},
"trustedDependencies": [
"@biomejs/biome",
"@swc/core",
"lefthook"
]
}