-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.05 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.05 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
{
"name": "hooknhold",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3002",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migration:generate": "drizzle-kit generate:pg",
"migration:push": "drizzle-kit push:pg --config=drizzle.config.ts",
"migration:drop": "drizzle-kit drop --config=drizzle.config.ts",
"migrate": "drizzle-kit generate:pg && drizzle-kit push:pg --config=drizzle.config.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.550.0",
"@aws-sdk/lib-storage": "^3.550.0",
"@aws-sdk/s3-request-presigner": "^3.550.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@sparticuz/chromium": "^126.0.0",
"class-variance-authority": "^0.7.0",
"cmdk": "^1.0.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.7",
"lucide-react": "^0.365.0",
"next": "14.1.4",
"next-auth": "^4.24.7",
"postgres": "^3.4.4",
"puppeteer": "^22.13.1",
"puppeteer-core": "^22.13.1",
"react": "^18.0.0",
"react-day-picker": "^8.10.1",
"react-dom": "^18.0.0",
"react-query": "^3.39.3",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1"
},
"devDependencies": {
"@sparticuz/chromium": "^126.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.0.1",
"clsx": "^2.1.1",
"drizzle-kit": "^0.20.14",
"eslint": "^8.0.0",
"eslint-config-next": "14.1.4",
"framer-motion": "^11.2.10",
"postcss": "^8.0.0",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.0.2"
}
}