-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.16 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
{
"name": "prime",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"makemigrations": "npx drizzle-kit generate --schema drizzle/schema.ts --out drizzle/migrations --dialect mysql",
"migrate": "npx drizzle-kit migrate --config drizzle.config.ts",
"seed": "npx tsx drizzle/seed/seed.ts",
"studio": "npx drizzle-kit studio --config drizzle.config.ts"
},
"dependencies": {
"@google/generative-ai": "^0.19.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@react-three/drei": "^9.112.0",
"@react-three/fiber": "^8.17.7",
"@types/nodemailer": "^6.4.16",
"better-sqlite3": "^11.3.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"framer-motion": "^11.5.4",
"lucide-react": "^0.424.0",
"mysql2": "^3.11.3",
"next": "14.2.4",
"next-themes": "^0.3.0",
"nodemailer": "^6.9.15",
"pexels": "^1.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"three": "^0.168.0",
"three-globe": "^2.31.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^20.16.5",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"drizzle-kit": "^0.23.2",
"eslint": "^8",
"eslint-config-next": "14.2.11",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "8.4.38",
"tailwindcss": "3.4.3",
"typescript": "5.0.4"
}
}