aboutsummaryrefslogtreecommitdiff
path: root/web/package.json
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-23 01:39:11 -0400
committerAndrew Lee <andrew@alee14.me>2025-03-23 01:39:11 -0400
commitd7c46a9eae28046bb26da182abc298dc18ed5a10 (patch)
treea1f9955a757b150b88ed5398ef851ab2d1d4a46b /web/package.json
parentb60e681998a456adecb93b5fe04b66ad4ac9abb6 (diff)
downloadAleeBot-d7c46a9eae28046bb26da182abc298dc18ed5a10.tar.gz
AleeBot-d7c46a9eae28046bb26da182abc298dc18ed5a10.tar.bz2
AleeBot-d7c46a9eae28046bb26da182abc298dc18ed5a10.zip
Replacing Astro with Next.JS; Prefix warning; Consistent env vars
Diffstat (limited to 'web/package.json')
-rw-r--r--web/package.json26
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"
}
}