mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 20:37:21 +00:00
30 lines
626 B
JSON
30 lines
626 B
JSON
{
|
|
"name": "nextjs",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"db": "turso dev --db-file test.db",
|
|
"db:check": "sqlite3 test.db \"PRAGMA wal_checkpoint(FULL);\"",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"bknd": "workspace:*",
|
|
"next": "15.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=18",
|
|
"react-dom": ">=18"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5",
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"postcss": "^8",
|
|
"tailwindcss": "^3.4.1"
|
|
}
|
|
}
|