-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.06 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
{
"name": "gpp-hono",
"version": "2.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "farm start",
"dev:wrangler": "pnpm build && wrangler dev",
"deploy": "pnpm build && wrangler deploy --minify",
"cf-typegen": "wrangler types --env-interface CloudflareBindings",
"build": "farm build",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"check:bundle": "node scripts/check-bundle-size.mjs",
"check": "pnpm typecheck && pnpm lint && pnpm test && pnpm build && pnpm check:bundle",
"preview": "farm preview"
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"hono": "^4.12.7",
"lucide-react": "^0.546.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.12.0",
"remark-gfm": "^4.0.1",
"shadcn": "^4.16.2",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"ua-parser-js": "^2.0.6",
"zod": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@biomejs/biome": "2.2.5",
"@farmfe/cli": "^1.0.4",
"@farmfe/core": "^1.6.7",
"@farmfe/js-plugin-postcss": "^1.12.0",
"@farmfe/plugin-react": "^1.2.0",
"@playwright/test": "^1.55.0",
"@tailwindcss/postcss": "^4.1.14",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.7.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"core-js": "^3.46.0",
"jsdom": "^27.0.0",
"postcss": "^8.5.6",
"react-refresh": "^0.14.2",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"wrangler": "^4.76.0"
}
}