Initial web

This commit is contained in:
Caesar2011
2026-05-17 19:55:53 +02:00
parent 6e3499812e
commit 20ed6ee9fb
58 changed files with 8541 additions and 0 deletions

34
web/package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate": "node-pg-migrate up -m migrations",
"migrate:down": "node-pg-migrate down -m migrations",
"migrate:create": "node-pg-migrate create -m migrations"
},
"dependencies": {
"@tailwindcss/postcss": "^4.3.0",
"next": "16.2.6",
"pg": "^8.20.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-grid-layout": "^2.2.3",
"react-resizable": "^4.0.1",
"uplot": "^1.6.32"
},
"devDependencies": {
"@types/node": "^24",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"node-pg-migrate": "^8.0.4",
"postcss": "^8.5.14",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
}
}