Add package.json for Next.js admin panel

This commit is contained in:
shenlan 2025-06-18 14:32:57 +08:00
parent ffc2457d75
commit 614f7a52b7
2 changed files with 2107 additions and 0 deletions

2085
ui/nextjs/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

22
ui/nextjs/package.json Normal file
View File

@ -0,0 +1,22 @@
{
"name": "xcontrol-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && rm -rf ../dist && cp -r out ../dist"
},
"dependencies": {
"next": "14.2.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"postcss": "^8.4.21",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"@types/react": "^18.2.7",
"@types/node": "^20.3.1"
}
}