chore(package): add prisma seed script to package.json

This commit is contained in:
cfngc4594 2025-03-06 11:27:33 +08:00
parent e69ac90f58
commit aacd5dccde

View File

@ -8,6 +8,9 @@
"start": "next start", "start": "next start",
"lint": "next lint" "lint": "next lint"
}, },
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": { "dependencies": {
"@fontsource/fira-code": "^5.1.1", "@fontsource/fira-code": "^5.1.1",
"@monaco-editor/react": "^4.7.0", "@monaco-editor/react": "^4.7.0",
@ -67,4 +70,4 @@
"tsx": "^4.19.3", "tsx": "^4.19.3",
"typescript": "^5" "typescript": "^5"
} }
} }