-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.11 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.11 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
{
"name": "mathinik",
"private": true,
"type": "module",
"packageManager": "pnpm@10.28.1",
"scripts": {
"dev": "vite dev",
"build": "vite build && tsc --noEmit",
"build:pages": "pnpm build && node scripts/build-pages.mjs",
"start": "vite preview --host 127.0.0.1 --port 3000",
"preview": "vite preview --host 127.0.0.1 --port 4173",
"pages:dev": "pnpm build:pages && wrangler pages dev --ip 127.0.0.1 --port 8788",
"deploy": "pnpm build:pages && wrangler pages deploy",
"lint": "biome check package.json tsconfig.json biome.json components.json playwright.config.ts README.md scripts src/router.tsx src/components src/lib src/routes src/test tests/e2e vite.config.ts vitest.config.ts wrangler.jsonc",
"format": "biome format package.json tsconfig.json biome.json components.json playwright.config.ts README.md scripts src/router.tsx src/components src/lib src/routes src/test tests/e2e vite.config.ts vitest.config.ts wrangler.jsonc --write",
"test": "pnpm test:unit && pnpm test:e2e",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:e2e": "pnpm build && playwright test"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.4",
"@tanstack/react-router": "^1.168.3",
"@tanstack/react-router-devtools": "^1.166.11",
"@tanstack/react-start": "^1.167.5",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.1",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.1.14",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.5.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^27.0.0",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"vite": "^8.0.2",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.7",
"workbox-window": "^7.4.0",
"wrangler": "^4.77.0"
}
}