-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
111 lines (111 loc) · 3.55 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "easy-panel",
"version": "0.3.13",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"build-zip": "next build && zip -r standalone.zip .next/standalone .next/static public package.json scripts-dist drizzle next.config.js",
"build-scripts": "node scripts/build.mjs",
"db:studio": "drizzle-kit studio",
"db:generate": "drizzle-kit generate:pg",
"db:migrate": "tsx ./scripts/db-migrate.ts",
"dev": "next dev",
"format": "prettier src --write",
"lint": "next lint",
"lint-fix": "next lint --fix",
"start": "next start",
"create-admin": "tsx scripts/create-admin.ts",
"seed-test": "tsx scripts/seed.ts",
"docker:create-admin": "node scripts-dist/create-admin.cjs",
"docker:db-migrate": "node scripts-dist/db-migrate.cjs"
},
"dependencies": {
"@hono/node-server": "^1.11.1",
"@hono/swagger-ui": "^0.2.2",
"@hono/zod-openapi": "^0.14.0",
"@hono/zod-validator": "^0.2.1",
"@hookform/resolvers": "^3.3.4",
"@lucia-auth/adapter-drizzle": "^1.0.7",
"@neondatabase/serverless": "^0.9.0",
"@node-rs/argon2": "^1.8.0",
"@node-rs/bcrypt": "^1.10.1",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@t3-oss/env-nextjs": "^0.9.2",
"@tanstack/react-query": "^5.28.9",
"@tanstack/react-table": "^8.15.3",
"@trpc/client": "next",
"@trpc/next": "next",
"@trpc/react-query": "next",
"@trpc/server": "next",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.7",
"drizzle-zod": "^0.5.1",
"generate-password-browser": "^1.1.0",
"hono": "^4.3.11",
"lucia": "^3.1.1",
"lucide-react": "^0.363.0",
"next": "^14.1.4",
"next-themes": "^0.3.0",
"oslo": "^1.2.0",
"pg": "^8.11.5",
"postgres": "^3.4.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.51.2",
"semver": "^7.6.0",
"server-only": "^0.0.1",
"sonner": "^1.4.41",
"superjson": "^2.2.1",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.0.2",
"vaul": "^0.9.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/eslint": "^8.56.6",
"@types/node": "^20.12.2",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"drizzle-kit": "^0.20.14",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.4",
"eslint-plugin-drizzle": "^0.2.3",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^3.4.3",
"tsc-alias": "^1.8.8",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"ct3aMetadata": {
"initVersion": "7.30.0"
}
}