The Dockerfile copies package.json before ui/ contents, so public/ doesn't exist during npm ci. Skip the copy gracefully. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
925 B
JSON
30 lines
925 B
JSON
{
|
|
"name": "cameleer-saas-ui",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"postinstall": "node -e \"const fs=require('fs'),p='node_modules/@cameleer/design-system/assets/';if(fs.existsSync('public')){[['cameleer3-32.png','public/favicon-32.png'],['cameleer3-192.png','public/favicon-192.png']].forEach(([s,d])=>fs.copyFileSync(p+s,d))}\""
|
|
},
|
|
"dependencies": {
|
|
"@cameleer/design-system": "0.1.34",
|
|
"@logto/react": "^4.0.13",
|
|
"@tanstack/react-query": "^5.90.0",
|
|
"lucide-react": "^1.7.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-router": "^7.13.0",
|
|
"zustand": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@vitejs/plugin-react": "^4.4.0",
|
|
"typescript": "^5.9.0",
|
|
"vite": "^6.3.0"
|
|
}
|
|
}
|