summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-05-08 21:31:00 +0200
committerYuval Adam <_@yuv.al>2025-05-08 22:27:03 +0200
commitc8d6dc54e2ee44daa00b11c6300f4f0d6ef32186 (patch)
tree0073da7bc68f5308610ed7d6d7bdc455ad4c6cf7 /package.json
parent7450fe585f1253bf30b9ccb7254019aafc5db088 (diff)
Initial migration to AstroJS
Diffstat (limited to 'package.json')
-rw-r--r--package.json38
1 files changed, 17 insertions, 21 deletions
diff --git a/package.json b/package.json
index f20c971..a7981c4 100644
--- a/package.json
+++ b/package.json
@@ -1,29 +1,25 @@
{
- "name": "cidr.xyz",
- "version": "2.0.0",
- "private": true,
+ "name": "cidrxyz",
+ "type": "module",
+ "version": "0.0.1",
"scripts": {
- "dev": "next dev",
- "build": "next build",
- "start": "next start",
- "lint": "next lint"
+ "dev": "astro dev",
+ "build": "astro build",
+ "preview": "astro preview",
+ "astro": "astro"
},
"dependencies": {
- "@next/third-parties": "^14.2.13",
- "next": "14.2.22",
- "react": "^18",
- "react-dom": "^18"
+ "@astrojs/react": "^4.2.7",
+ "@tailwindcss/vite": "^4.1.5",
+ "@types/react": "^19.1.3",
+ "@types/react-dom": "^19.1.3",
+ "astro": "^5.7.12",
+ "netmask": "^2.0.2",
+ "react": "^19.1.0",
+ "react-dom": "^19.1.0",
+ "tailwindcss": "^4.1.5"
},
"devDependencies": {
- "@types/netmask": "^2.0.5",
- "@types/node": "^20",
- "@types/react": "^18",
- "@types/react-dom": "^18",
- "eslint": "^8",
- "eslint-config-next": "14.2.13",
- "netmask": "^2.0.2",
- "postcss": "^8",
- "tailwindcss": "^3.4.1",
- "typescript": "^5"
+ "@types/netmask": "^2.0.5"
}
}