-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.86 KB
/
package.json
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
79
80
81
82
83
84
85
86
87
88
{
"name": "cloudflare-rrv7-hono-app",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky",
"db:generate": "dotenv -- drizzle-kit generate ",
"db:migrate-local": "wrangler d1 migrations apply --local DB",
"db:migrate-production": "dotenv -- drizzle-kit migrate",
"dev": "node dev-server.js | pino-pretty",
"build": "react-router build",
"start": "wrangler dev",
"typegen:cf": "wrangler types",
"typecheck": "react-router typegen && tsc -b && echo \"Types check passed\"",
"lint": "eslint .",
"lint-and-format:fix": "eslint app server shared --fix && prettier . --write",
"format": "prettier . --check",
"format:fix": "prettier . --write"
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": "eslint",
"*.{js,css,md,ts,tsx,jsx}": "prettier --write"
},
"dependencies": {
"@hono/zod-validator": "^0.4.2",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@react-router/fs-routes": "^7.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "~0.38.4",
"hono": "^4.6.16",
"isbot": "^5.1.21",
"lucide-react": "^0.473.0",
"next-themes": "^0.4.4",
"pino": "^9.6.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250109.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.18.0",
"@hono/node-server": "^1.13.7",
"@react-router/dev": "^7.1.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/node": "^22",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"autoprefixer": "^10.4.20",
"commitlint": "^19.6.1",
"dotenv-cli": "^8.0.0",
"drizzle-kit": "~0.30.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "19.0.0-beta-63e3235-20250105",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-tailwindcss": "^3.18.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"miniflare": "^3.20241230.2",
"pino-pretty": "^13.0.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.10",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4",
"wrangler": "^3.101.0"
}
}