Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Oct 7, 2024
1 parent 3b42f93 commit 325dda8
Show file tree
Hide file tree
Showing 7 changed files with 289 additions and 43 deletions.
2 changes: 1 addition & 1 deletion api/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
.env.development.local
.env.test.local
.env.production.local
.env.oraclecloud
.env.production

npm-debug.log*
yarn-debug.log*
Expand Down
1 change: 1 addition & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ yarn-error.log*
# local env files
.env
.env*.local
.env.production

# vercel
.vercel
Expand Down
155 changes: 138 additions & 17 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8001",
"build": "next build",
"start": "next start -p 8001",
"dev": "next dev -p 80001",
"build": "rimraf .next && next build",
"start": "next start -p 80001",
"lint": "next lint",
"ncu": "ncu -u -x typescript,eslint,date-fns"
},
Expand Down Expand Up @@ -40,6 +40,7 @@
"eslint": "^8",
"eslint-config-next": "14.2.14",
"npm-check-updates": "^17.1.3",
"rimraf": "^6.0.1",
"typescript": "^5.4.5"
}
}
1 change: 1 addition & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ yarn-error.log*
# local env files
.env
.env*.local
.env.production

# vercel
.vercel
Expand Down
Loading

0 comments on commit 325dda8

Please sign in to comment.