-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
87 lines (87 loc) · 2.78 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
{
"name": "stardust",
"version": "1.0-rc.0",
"private": true,
"type": "module",
"scripts": {
"dev": "CONFIG=$(cat .config/config.json) tsx server.ts",
"build": "CONFIG=$(cat .config/config.json) next build",
"start": "NODE_ENV=production CONFIG=$(cat .config/config.json) tsx server.ts",
"check": "biome check --write .",
"drizzle-kit": "drizzle-kit",
"db:push": "drizzle-kit push",
"db:seed": "CONFIG=$(cat .config/config.json) tsx src/lib/drizzle/seed.ts",
"config:generate": "ts-json-schema-generator --tsconfig ./tsconfig.json --path ./src/types/config.d.ts --type Config > ./.config/config-schema.json"
},
"dependencies": {
"@marsidev/react-turnstile": "^0.7.2",
"@next/bundle-analyzer": "15.0.1",
"@novnc/novnc": "^1.5.0",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.3",
"@tanstack/react-table": "8.19.3",
"argon2": "^0.40.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"consola": "^3.2.3",
"dockerode": "^4.0.2",
"drizzle-orm": "^0.32.0",
"drizzle-zod": "^0.5.1",
"input-otp": "^1.2.4",
"lucide-react": "^0.358.0",
"next": "15.0.3-canary.5",
"next-auth": "5.0.0-beta.24",
"next-themes": "^0.3.0",
"node-loader": "^2.0.0",
"otplib": "^12.0.1",
"postgres": "^3.4.4",
"react": "19.0.0-rc-7c8e5e7a-20241101",
"react-dom": "19.0.0-rc-7c8e5e7a-20241101",
"sharp": "^0.33.3",
"sonner": "^1.4.41",
"swr": "^2.2.5",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.9.1",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/dockerode": "^3.3.26",
"@types/node": "^20.11.30",
"@types/novnc__novnc": "^1.3.5",
"@types/pg": "^8.11.4",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@types/ws": "^8.5.12",
"autoprefixer": "^10.4.19",
"babel-plugin-react-compiler": "19.0.0-beta-6fc168f-20241025",
"drizzle-kit": "^0.23.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.1",
"ts-json-schema-generator": "^2.3.0",
"typescript": "^5.4.3"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}