feat(web): add Next.js project configuration

This commit is contained in:
2025-01-02 12:00:00 -05:00
parent 1a5e1d6c38
commit 1d98cd5a73
3 changed files with 59 additions and 0 deletions

24
web/package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "incidentops-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"typescript": "^5.0.0"
}
}