Skip to content

Commit

Permalink
Add npm scripts for drizzle tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Nov 15, 2024
1 parent 5672d37 commit e90846b
Show file tree
Hide file tree
Showing 3 changed files with 239 additions and 177 deletions.
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "tsx db/migrate && next build",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ."
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"db:generate": "drizzle-kit generate",
"db:migrate": "npx tsx db/migrate.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@ai-sdk/openai": "1.0.0-canary.3",
Expand Down Expand Up @@ -64,7 +68,7 @@
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/d3-scale": "^4.0.8",
"@types/node": "^20",
"@types/node": "^22.8.6",
"@types/pdf-parse": "^1.1.4",
"@types/react": "^18",
"@types/react-dom": "^18",
Expand Down
Loading

0 comments on commit e90846b

Please sign in to comment.