-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.11 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.11 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "npm run db:prepare",
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint",
"db:up": "docker compose up -d db",
"db:down": "docker compose down",
"db:logs": "docker compose logs -f db",
"db:ensure": "./scripts/ensure-local-db.sh",
"db:prepare": "npm run db:ensure && prisma migrate deploy && prisma generate",
"db:seed": "tsx prisma/seed.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@better-auth/expo": "^1.4.19",
"@ffmpeg/core": "^0.12.9",
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@gsap/react": "^2.1.2",
"@hello-pangea/dnd": "^18.0.1",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@sendgrid/mail": "^8.1.6",
"@supabase/supabase-js": "^2.90.1",
"@tanstack/react-query": "^5.90.20",
"@types/three": "^0.182.0",
"better-auth": "^1.4.15",
"canvas": "^3.2.1",
"cmu-pronouncing-dictionary": "^3.0.0",
"dotenv": "^17.2.3",
"ffmpeg-static": "^5.3.0",
"gsap": "^3.14.2",
"hyphenation.en-us": "^0.2.1",
"hypher": "^0.2.5",
"lenis": "^1.3.17",
"lucide-react": "^0.562.0",
"motion": "^12.27.5",
"next": "^16.1.3",
"pg": "^8.17.1",
"react": "^19.2.3",
"react-dnd": "^16.0.1",
"react-dom": "^19.2.3",
"react-modal-sheet": "^5.2.1",
"resend": "^6.8.0",
"sharp": "^0.34.5",
"split-type": "^0.3.4",
"three": "^0.182.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@prisma/client": "^5.22.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.23",
"eslint": "^9",
"eslint-config-next": "16.1.3",
"jsdom": "^28.0.0",
"postcss": "^8.5.6",
"prisma": "^5.22.0",
"tailwindcss": "^4.1.18",
"typescript": "^5",
"vitest": "^4.0.18"
}
}