-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.67 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.67 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
{
"name": "vts-basic",
"version": "0.5.3",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"start": "vite preview",
"format": "biome format --write",
"lint": "biome lint",
"check": "biome check",
"check:unsafe": "biome check --write --unsafe",
"check:all": "bun check && bun coverage",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:install": "bunx playwright install --with-deps",
"test:e2e:show-report": "bunx playwright show-report",
"coverage": "vitest run --coverage",
"validate": "bun run check:unsafe && bun run check:all",
"precompress": "bun run scripts/precompress.ts",
"build:prod": "bun run build && bun run validate && cargo build --release --manifest-path proxy/Cargo.toml",
"serve:prod": "concurrently \"PORT=8081 bun run dist/server/server.js\" \"./proxy/target/release/proxy\"",
"start:prod": "bun run build:prod && bun run serve:prod"
},
"dependencies": {
"@gsap/react": "^2.1.2",
"@tanstack/react-devtools": "^0.9.2",
"@tanstack/react-form": "^1.27.7",
"@tanstack/react-query": "^5.90.16",
"@tanstack/react-query-devtools": "^5.91.2",
"@tanstack/react-router": "^1.146.2",
"@tanstack/react-router-devtools": "^1.146.2",
"@tanstack/react-router-ssr-query": "^1.146.2",
"@tanstack/react-start": "^1.146.3",
"@tanstack/react-virtual": "^3.13.18",
"@tanstack/router-plugin": "^1.146.3",
"gsap": "^3.14.2",
"lucide-react": "^0.562.0",
"prop-types": "^15.8.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hot-toast": "^2.6.0",
"react-is": "^19.2.3",
"recharts": "^3.6.0",
"vite-tsconfig-paths": "^6.0.3",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@fontsource/google-sans-code": "^5.2.3",
"@fontsource/ibm-plex-sans": "^5.2.8",
"@fontsource/ibm-plex-serif": "^5.2.7",
"@playwright/test": "^1.57.0",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/bun": "^1.3.5",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.16",
"autoprefixer": "^10.4.23",
"concurrently": "^9.2.1",
"daisyui": "^5.5.14",
"happy-dom": "^20.1.0",
"playwright": "^1.57.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.16"
}
}