forked from Dhravya/cloudflare-saas-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "cloudflare-saas-starter",
"private": true,
"type": "module",
"version": "0.0.1",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write",
"setup": "bun run scripts/setup.ts",
"deploy": "turbo deploy"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@clack/prompts": "^0.7.0",
"@cloudflare/next-on-pages": "1",
"@cloudflare/workers-types": "^4.20240512.0",
"@iarna/toml": "^2.2.5",
"@repo/eslint-config": "*",
"@repo/shared-types": "*",
"@repo/tailwind-config": "*",
"@repo/typescript-config": "*",
"@tailwindcss/typography": "^0.5.13",
"@types/readline-sync": "^1.4.8",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.21.2",
"eslint-plugin-next-on-pages": "^1.11.3",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"readline-sync": "^1.4.10",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"turbo": "latest",
"vercel": "^34.2.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.1.8",
"workspaces": ["apps/*", "packages/*"],
"dependencies": {
"@auth/drizzle-adapter": "^1.1.0",
"@aws-sdk/client-s3": "^3.577.0",
"@aws-sdk/s3-request-presigner": "^3.577.0",
"@hookform/resolvers": "^3.4.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"drizzle-orm": "^0.30.10",
"next-app-theme": "^0.1.10",
"next-auth": "^5.0.0-beta.18",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.51.5",
"sonner": "^1.4.41",
"uploadthing": "^6.10.4",
"zod": "^3.23.8"
}
}