37 lines
1002 B
JSON
37 lines
1002 B
JSON
{
|
|
"name": "face-to-api",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "concurrently -k -n api,web -c cyan,green \"npm:dev:api\" \"npm:dev:web\"",
|
|
"dev:api": "tsx watch server/index.ts",
|
|
"dev:web": "vite --host 127.0.0.1",
|
|
"build": "tsc -p tsconfig.server.json && vite build",
|
|
"typecheck": "tsc --noEmit && tsc -p tsconfig.server.json --noEmit",
|
|
"preview": "npm run build && node dist-server/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@vitejs/plugin-react": "^5.0.4",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^17.2.3",
|
|
"express": "^5.1.0",
|
|
"lucide-react": "^0.468.0",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"zod": "^4.1.12"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.19",
|
|
"@types/express": "^5.0.5",
|
|
"@types/node": "^22.18.10",
|
|
"@types/react": "^19.2.2",
|
|
"@types/react-dom": "^19.2.2",
|
|
"concurrently": "^9.2.1",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.1.10"
|
|
}
|
|
}
|
|
|