-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.33 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
78
79
{
"name": "npspeak",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"drizzle:generate": "drizzle-kit generate",
"drizzle:migrate": "drizzle-kit migrate",
"start": "next start",
"lint": "next lint",
"prettier:format": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"seed": "ts-node -O \"{\\\"module\\\": \\\"commonjs\\\"}\" ./database/drizzle/seed.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.614.0",
"@aws-sdk/s3-request-presigner": "^3.614.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.9.0",
"@nextui-org/react": "^2.4.6",
"@radix-ui/react-toast": "^1.2.1",
"@react-aria/ssr": "^3.9.4",
"@stripe/stripe-js": "^4.1.0",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.44.3",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.32.0",
"drizzle-zod": "^0.5.1",
"elevenlabs": "^0.18.0",
"framer-motion": "^11.3.2",
"music-metadata": "^10.6.0",
"next": "^14.2.18",
"next-themes": "^0.3.0",
"pg": "^8.12.0",
"postgres": "^3.4.4",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.52.1",
"react-icons": "^5.2.1",
"react-select": "^5.8.0",
"stripe": "^16.2.0",
"tailwind-merge": "^2.4.0",
"uuid": "^10.0.0",
"zod": "^3.23.8",
"zod-form-data": "^2.0.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.45.1",
"@tailwindcss/typography": "^0.5.13",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18.3.3",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.23.0",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint-plugin-drizzle": "^0.2.3",
"postcss": "^8",
"prettier": "^3.3.2",
"supabase": "^1.183.5",
"tailwindcss": "^3.4.4",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}