next-bruh/package.json

15 lines
378 B
JSON

{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build-prod": "npm run build && cp -r public .next/standalone && cp -r .next/static .next/standalone/.next",
"start-prod": "node bin/dumpEnv.js && node .next/standalone/server.js"
},
"dependencies": {
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}