Skip to content

Commit

Permalink
Fix package.json scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmarcou committed Nov 21, 2024
1 parent 8370298 commit c475f5c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "pgt-web-app",
"version": "0.1.1",
"version": "0.1.2",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "npx prisma migrate deploy && next start",
"start": "next start",
"start:prod": "prisma migrate deploy && node server.js",
"lint": "next lint"
},
"dependencies": {
Expand Down

0 comments on commit c475f5c

Please sign in to comment.