-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
32 additions
and
11,495 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,19 +5,19 @@ | |
"homepage": "https://stats.dooboo.io", | ||
"scripts": { | ||
"dev:next": "NODE_OPTIONS='--inspect' next dev", | ||
"dev": "concurrently \"yarn dev:next\" \"tailwindcss --input ./styles/root.css --output ./styles/output.css --watch\"", | ||
"build": "tailwindcss ./styles/root.css --output ./styles/output.css && yarn generate:prisma && next build", | ||
"dev": "concurrently \"bun dev:next\" \"tailwindcss --input ./styles/root.css --output ./styles/output.css --watch\"", | ||
"build": "tailwindcss ./styles/root.css --output ./styles/output.css && bun generate:prisma && next build", | ||
"export": "next export", | ||
"start": "next start", | ||
"lint": "next lint && yarn eslint", | ||
"lint": "next lint && bun eslint", | ||
"eslint": "eslint --ext .ts,.tsx,.js,.jsx src server app", | ||
"seed": "dotenv -e .env.local -- prisma db seed", | ||
"migrate:dev": "dotenv -e .env.dev -- prisma migrate dev", | ||
"migrate:staging": "dotenv -e .env.local -- prisma migrate deploy", | ||
"migrate:prod": "dotenv -e .env.prod -- prisma migrate deploy", | ||
"generate:prisma": "prisma generate", | ||
"generate:supabase": "npx supabase gen types typescript --project-id $SUPABASE_PROJECT_DOOBOOIO_STAGING --schema public > src/types/supabase.ts", | ||
"generate": "yarn generate:prisma && yarn generate:supabase", | ||
"generate": "bun generate:prisma && bun generate:supabase", | ||
"test": "vitest" | ||
}, | ||
"dependencies": { | ||
|
@@ -84,6 +84,5 @@ | |
}, | ||
"prisma": { | ||
"seed": "ts-node --transpile-only ./prisma/seed.ts" | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.