Files
hireflow/package.json
tester 6db9eadb6f feat: implement HireFlow MVP features
- AI-powered CV parsing (regex extraction of skills, experience, education)
- Multi-channel job posting (LinkedIn, Indeed, Arbetsförmedlingen, Glassdoor, company site)
- Collaborative hiring scorecards with 5-criteria scoring system
- Dashboard with live stats (candidates, jobs, applications, scorecards)
- PostgreSQL schema for candidates, jobs, applications, scorecards
- REST API for all CRUD operations
- React UI with shadcn/ui components throughout

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-21 18:05:56 +00:00

27 lines
754 B
JSON

{
"name": "template-001",
"version": "1.0.0",
"description": "SAAC company website template — React + shadcn/ui + Express + PostgreSQL",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon",
"build": "cd client && npm run build",
"postinstall": "[ -d client ] && cd client && npm install || true",
"dev:local": "concurrently \"nodemon server.js\" \"cd client && npm run dev\"",
"dev:server": "nodemon server.js",
"dev:client": "cd client && npm run dev"
},
"dependencies": {
"express": "^4.18.2",
"pg": "^8.11.3",
"redis": "^4.6.12",
"cors": "^2.8.5",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"nodemon": "^3.0.2",
"concurrently": "^8.2.2"
}
}