Files
ftb-project-management/apps/web/package.json
2026-07-02 09:30:50 +08:00

35 lines
1.0 KiB
JSON

{
"name": "web",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "node scripts/clean-next-dev-cache.mjs && node --max-old-space-size=4096 node_modules/next/dist/bin/next dev --port 3000",
"build": "node --max-old-space-size=4096 node_modules/next/dist/bin/next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "tsc -p tsconfig.test.json && node scripts/run-node-tests.mjs .tmp-test"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@ftb/shared": "workspace:*",
"lucide-react": "^1.17.0",
"next": "^14.2.0",
"pinyin-pro": "^3.28.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.5.0"
}
}