-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 2.35 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
{
"name": "s3-upload-thing",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx -r dotenv/config db/migrate.ts",
"db:ui": "drizzle-kit studio --verbose --port 3003",
"db:migrate:drop": "drizzle-kit drop",
"db:migrate:up": "drizzle-kit up"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.5.0",
"@aws-sdk/client-s3": "^3.654.0",
"@aws-sdk/s3-presigned-post": "^3.654.0",
"@aws-sdk/s3-request-presigner": "^3.654.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@uppy/aws-s3": "^4.1.0",
"@uppy/core": "^4.2.1",
"@uppy/dashboard": "^4.1.0",
"@uppy/react": "^4.0.2",
"@uppy/status-bar": "^4.0.3",
"@uppy/xhr-upload": "^4.2.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"google-auth-library": "^9.14.1",
"lodash-es": "^4.17.21",
"lucide-react": "^0.445.0",
"next": "14.2.13",
"next-auth": "^5.0.0-beta.21",
"next-themes": "^0.3.0",
"postgres": "^3.4.4",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-filepond": "^7.1.2",
"react-intersection-observer": "^9.13.1",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"drizzle-kit": "^0.24.2",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.1",
"tsx": "^4.19.1",
"typescript": "^5"
}
}