-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.54 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
80
81
82
83
84
85
{
"name": "themeai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"postbuild": "next-sitemap",
"lint": "next lint",
"test": "jest --verbose --maxWorkers=2",
"db:generate": "drizzle-kit generate:pg",
"db:push": "drizzle-kit push:pg",
"db:introspect": "drizzle-kit introspect:pg"
},
"dependencies": {
"@auth/drizzle-adapter": "^0.3.2",
"@neondatabase/serverless": "^0.6.0",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@tanstack/react-query": "^4.35.3",
"@tanstack/react-query-devtools": "^4.35.3",
"@types/node": "20.4.9",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"drizzle-orm": "^0.28.6",
"eslint": "8.46.0",
"eslint-config-next": "13.4.13",
"lorem-ipsum": "^2.0.8",
"lucide-react": "0.263.1",
"moment": "^2.29.4",
"next": "13.4.13",
"next-auth": "^4.23.1",
"next-sitemap": "^4.2.3",
"nextjs-progressbar": "^0.0.16",
"nodemailer": "^6.9.7",
"openai": "^4.16.1",
"pg": "^8.11.3",
"postcss": "8.4.27",
"postgres": "^3.3.5",
"react": "18.2.0",
"react-color": "^2.19.3",
"react-dom": "18.2.0",
"react-ga4": "^2.1.0",
"react-loading-skeleton": "^3.3.1",
"react-nice-avatar": "^1.4.1",
"react-transition-group": "^4.4.5",
"stripe": "^13.2.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.8",
"@types/nodemailer": "^6.4.14",
"@types/react-color": "^3.0.6",
"@types/react-transition-group": "^4.4.6",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.19.13",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}