-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 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
{
"name": "virtuehearts-reiki-training",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^18.18.0 || ^19.8.0 || >= 20.0.0"
},
"scripts": {
"dev": "node scripts/init.js && next dev",
"build": "next build",
"start": "node scripts/init.js && next start",
"lint": "next lint",
"db:push": "drizzle-kit push",
"test": "node scripts/verify-db.js"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.1",
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^12.6.2",
"clsx": "^2.1.1",
"dotenv": "^17.2.4",
"drizzle-orm": "^0.45.1",
"framer-motion": "^12.0.6",
"lucide-react": "^0.474.0",
"next": "15.1.6",
"next-auth": "^4.24.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.0.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.17.17",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.31.8",
"eslint": "^9.19.0",
"eslint-config-next": "15.1.6",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
}
}