-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 871 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 871 Bytes
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
{
"name": "onecard",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 5000 -H 0.0.0.0",
"build": "next build",
"start": "next start -p 5000 -H 0.0.0.0",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:seed": "tsx scripts/seed.ts",
"build:github": "bash scripts/build-github.sh"
},
"dependencies": {
"@heroicons/react": "^2.1.0",
"clsx": "^2.1.0",
"drizzle-orm": "^0.30.0",
"next": "^14.2.0",
"postgres": "^3.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.19.30",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"autoprefixer": "^10.4.23",
"drizzle-kit": "^0.21.4",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}