-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.85 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.85 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
{
"name": "regenbogenbande",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate:videos": "bun run scripts/migrate-videos.ts",
"migrate:pictures": "bun run scripts/migrate-pictures.ts",
"migrate:all": "bun run scripts/migrate-videos.ts && bun run scripts/migrate-pictures.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@aws-sdk/client-s3": "^3.939.0",
"@aws-sdk/s3-request-presigner": "^3.939.0",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@heroui/react": "^2.8.0-beta.5",
"@internationalized/date": "^3.8.0",
"@prisma/client": "^6.19.0",
"@tailwindcss/postcss": "^4.1.7",
"bcrypt": "^6.0.0",
"classnames": "^2.5.1",
"exif-js": "^2.3.0",
"framer-motion": "^12.23.3",
"lucide-react": "^0.525.0",
"motion": "^12.10.1",
"mp4box": "^1.4.2",
"next": "15.3.6",
"next-auth": "^5.0.0-beta.30",
"prisma": "^6.19.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.56.1",
"sass": "^1.78.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/bcrypt": "^6.0.0",
"@types/node": "^24.0.13",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"autoprefixer": "^10.4.17",
"eslint": "^9.26.0",
"eslint-config-next": "15.3.6",
"eslint-plugin-storybook": "^0.12.0",
"file-loader": "^6.2.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.7",
"typescript": "^5.8.3"
},
"trustedDependencies": [
"@heroui/shared-utils",
"@parcel/watcher",
"unrs-resolver"
]
}