diff options
Diffstat (limited to 'web/package.json')
| -rw-r--r-- | web/package.json | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/web/package.json b/web/package.json index 2a7be8a..5bac297 100644 --- a/web/package.json +++ b/web/package.json @@ -1,20 +1,24 @@ { "name": "aleebot-web", - "type": "module", - "version": "0.0.1", + "version": "0.1.0", + "private": true, "scripts": { - "dev": "astro dev", - "build": "astro build", - "preview": "astro preview", - "astro": "astro" + "dev": "next dev --turbopack", + "build": "next build", + "start": "next start", + "lint": "next lint" }, "dependencies": { - "@astrojs/node": "^9.0.0", - "@astrojs/react": "^4.1.3", - "@types/react": "^19.0.4", - "@types/react-dom": "^19.0.2", - "astro": "^5.1.5", + "next": "15.2.3", + "next-auth": "^5.0.0-beta.25", "react": "^19.0.0", "react-dom": "^19.0.0" + }, + "devDependencies": { + "@tailwindcss/postcss": "^4", + "tailwindcss": "^4", + "eslint": "^9", + "eslint-config-next": "15.2.3", + "@eslint/eslintrc": "^3" } } |
