Files
NianAIGC/package.json

59 lines
1.8 KiB
JSON

{
"name": "zhinian-creation-assistant",
"version": "0.1.0",
"private": true,
"type": "module",
"productName": "智念AIGC平台",
"description": "Enterprise Web platform for image and video generation with organization billing.",
"scripts": {
"dev": "next dev",
"build": "next build",
"prestart": "next build",
"start": "next start --hostname 127.0.0.1 --port 3000",
"start:server": "next start --hostname 0.0.0.0 --port 3000",
"worker": "node scripts/worker.mjs",
"worker:once": "node scripts/worker.mjs --once",
"health": "node scripts/health-check.mjs",
"info": "node scripts/print-app-info.mjs",
"bootstrap:admin": "node scripts/bootstrap-admin.mjs",
"db:migrate": "node scripts/migrate-postgres.mjs",
"deploy:check": "node scripts/check-ack-manifests.mjs",
"migrate:accounts": "node scripts/import-legacy-accounts.mjs",
"go:fmt": "node scripts/run-go-command.mjs fmt ./...",
"go:test": "node scripts/run-go-command.mjs test ./...",
"go:vet": "node scripts/run-go-command.mjs vet ./...",
"go:build": "node scripts/run-go-command.mjs build ./cmd/zhinian-api",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"ali-oss": "^6.23.0",
"clsx": "^2.1.1",
"graceful-fs": "^4.2.11",
"gsap": "^3.15.0",
"lucide-react": "^0.468.0",
"next": "15.5.18",
"pg": "^8.16.3",
"react": "19.2.6",
"react-dom": "19.2.6",
"server-only": "0.0.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.5",
"@types/pg": "^8.15.5",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"typescript": "5.9.3",
"vitest": "4.1.7"
},
"overrides": {
"postcss": "^8.5.10"
},
"engines": {
"node": ">=20"
}
}