| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "name": "jin-ce-hong-lun",
- "version": "0.1.0",
- "private": true,
- "scripts": {
- "predev": "node ./scripts/predev-lock-check.mjs",
- "dev": "next dev --webpack",
- "dev:clean": "sh -c 'PIDS=$(lsof -ti tcp:3000); if [ -n \"$PIDS\" ]; then echo \"Killing port 3000 process: $PIDS\"; kill $PIDS; fi; next dev --webpack'",
- "dev:reset": "sh -c 'PIDS=$(lsof -ti tcp:3000 -sTCP:LISTEN); if [ -n \"$PIDS\" ]; then echo \"Killing port 3000 process: $PIDS\"; kill $PIDS; fi; rm -f .next/dev/lock; npm run dev'",
- "dev:restart": "npm run dev:clean",
- "build": "next build",
- "build:test": "cross-env NEXT_PUBLIC_APP_ENV=test next build",
- "start": "next start",
- "lint": "eslint",
- "pm2:test": "pm2 start ecosystem.config.cjs --only jchl-test",
- "pm2:prod": "pm2 start ecosystem.config.cjs --only jchl-prod",
- "pm2:reload:test": "pm2 reload jchl-test",
- "pm2:reload:prod": "pm2 reload jchl-prod",
- "release:test": "npm run build:test && pm2 reload jchl-test",
- "release:prod": "npm run build && pm2 reload jchl-prod"
- },
- "dependencies": {
- "axios": "^1.15.0",
- "clsx": "^2.1.1",
- "lucide-react": "^1.11.0",
- "next": "16.2.3",
- "next-intl": "^4.9.1",
- "nextjs-toploader": "^3.9.17",
- "react": "19.2.4",
- "react-dom": "19.2.4",
- "tailwind-merge": "^3.5.0"
- },
- "devDependencies": {
- "@tailwindcss/postcss": "^4",
- "@types/node": "^20",
- "@types/react": "^19",
- "@types/react-dom": "^19",
- "cross-env": "^10.1.0",
- "eslint": "^9",
- "eslint-config-next": "16.2.3",
- "tailwindcss": "^4",
- "typescript": "^5"
- }
- }
|