-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.39 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.39 KB
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
{
"name": "pixea",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-only",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"email:dev": "email dev",
"db:generate": "npx drizzle-kit generate",
"db:migrate": "npx drizzle-kit migrate",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"dependencies": {
"@ai-sdk/google": "^3.0.58",
"@auth/drizzle-adapter": "^1.11.1",
"@aws-sdk/client-s3": "^3.1024.0",
"@aws-sdk/s3-request-presigner": "^3.1024.0",
"@heroicons/react": "^2.2.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/themes": "^3.3.0",
"@react-email/components": "1.0.11",
"@react-email/tailwind": "2.0.7",
"@uppy/aws-s3": "^4.3.2",
"@uppy/core": "^4.5.3",
"@uppy/dashboard": "^4.4.2",
"@uppy/drag-drop": "^4.2.2",
"@uppy/file-input": "^4.2.2",
"@uppy/locales": "^4.8.4",
"@uppy/progress-bar": "^4.3.2",
"@uppy/react": "^4.5.2",
"@vercel/analytics": "^2.0.1",
"ai": "^6.0.146",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crockford-base32": "^2.0.0",
"drizzle-orm": "^0.45.2",
"heic-convert": "^2.1.0",
"luxon": "^3.7.2",
"next": "16.2.2",
"next-auth": "^5.0.0-beta.25",
"next-intl": "^4.9.0",
"next-themes": "^0.4.6",
"ohm-js": "^17.5.0",
"pg": "^8.20.0",
"radash": "^12.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"resend": "^6.10.0",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/heic-convert": "^2.1.0",
"@types/luxon": "^3.7.1",
"@types/node": "^25",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.27",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.2",
"postcss": "^8",
"postcss-import": "^16.1.1",
"radix-themes-tw": "^1.1.0",
"react-email": "5.2.10",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^6"
},
"overrides": {
"@monaco-editor/react": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"@uppy/react": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
}
}
}