-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.19 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
{
"name": "btl",
"version": "0.1.0",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:next": "next lint",
"lint:all": "eslint .",
"prepare": "husky",
"commitlint": "commitlint --edit",
"wrangler:dev": "wrangler dev",
"deploy": "wrangler deploy",
"db:generate": "tsc src/libs/shared/src/db/schema/index.ts && drizzle-kit generate",
"db:migrate": "tsx src/libs/server/src/db/migrate.ts",
"db:seed": "tsx src/libs/server/src/db/seed.ts",
"db:test-conn": "tsx src/libs/server/src/db/test-conn.ts"
},
"dependencies": {
"@hono/zod-validator": "^0.2.1",
"@neondatabase/serverless": "^0.10.4",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/themes": "^3.0.5",
"@tanstack/react-query": "^5.32.0",
"@tanstack/react-query-devtools": "^5.32.0",
"@types/pg": "^8.11.11",
"@types/ws": "^8.5.14",
"axios": "^1.6.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"drizzle-orm": "^0.31.1",
"embla-carousel-autoplay": "^8.1.5",
"embla-carousel-react": "^8.1.5",
"geist": "^1.3.0",
"hono": "^4.3.6",
"next": "14.2.1",
"pg": "^8.13.1",
"react": "^18",
"react-dom": "^18",
"react-error-boundary": "^4.0.13",
"tailwind-merge": "^2.3.0",
"ws": "^8.18.0",
"zod": "^3.23.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240512.0",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.22.2",
"eslint": "^8",
"eslint-config-next": "14.2.1",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"postcss": "^8",
"postgres": "^3.4.4",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.1",
"tsc-files": "^1.1.4",
"tsx": "^4.11.2",
"typescript": "^5",
"wrangler": "^3.57.1"
}
}