Align Next.js scripts for deployment

This commit is contained in:
Alexa Amundson
2025-11-21 13:13:10 -06:00
parent f417ef9660
commit a56df5a304
2 changed files with 9 additions and 3 deletions

3
package-lock.json generated
View File

@@ -21,6 +21,9 @@
"eslint": "^9.39.1", "eslint": "^9.39.1",
"eslint-config-next": "^16.0.3", "eslint-config-next": "^16.0.3",
"typescript": "^5.9.3" "typescript": "^5.9.3"
},
"engines": {
"node": ">=20"
} }
}, },
"node_modules/@babel/code-frame": { "node_modules/@babel/code-frame": {

View File

@@ -4,10 +4,10 @@
"description": "Admin console for deployments, observability, environments, and system control.", "description": "Admin console for deployments, observability, environments, and system control.",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev -p 3000", "dev": "next dev",
"build": "next build", "build": "next build",
"start": "next start -p $PORT", "start": "next start -p ${PORT:-3000}",
"lint": "eslint . --ext .ts,.tsx" "lint": "next lint"
}, },
"keywords": [ "keywords": [
"prism", "prism",
@@ -16,6 +16,9 @@
], ],
"author": "Prism Operations Group", "author": "Prism Operations Group",
"license": "Apache-2.0", "license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"dependencies": { "dependencies": {
"next": "^16.0.3", "next": "^16.0.3",
"react": "^19.2.0", "react": "^19.2.0",