Updated project name references in configuration, scripts, and code. This includes changes to database URLs, Docker commands, environment variables, and displayed API titles. Ensures consistency with the new project name "App".
31 lines
678 B
JSON
31 lines
678 B
JSON
{
|
|
"name": "frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"docker:build": "docker build -t app-frontend .",
|
|
"docker:run": "docker run -p 3000:3000 app-frontend"
|
|
|
|
},
|
|
"dependencies": {
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"next": "15.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@tailwindcss/postcss": "^4",
|
|
"tailwindcss": "^4",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.2.0",
|
|
"@eslint/eslintrc": "^3"
|
|
}
|
|
}
|