- Backend: Express + TypeORM + PostgreSQL, JWT + OTP auth - Frontend: React + Vite + Tailwind, 4 pages (Home/Login/Orders/404) - Docker Compose: PostgreSQL 15 on port 5434 - Tests: 16 tests passing (API + Frontend) - ai_state: rules.md, INSTRUCTIONS.md, session tasks - Examples: brand book PDF, logos, page mockups
36 lines
858 B
JSON
36 lines
858 B
JSON
{
|
|
"name": "nutshell-api",
|
|
"version": "0.1.0",
|
|
"description": "Nutshell Manufacturing Aggregator API",
|
|
"main": "dist/app.js",
|
|
"scripts": {
|
|
"dev": "ts-node src/app.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/app.js",
|
|
"typeorm": "typeorm-cli"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.5.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"express-validator": "^7.0.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"multer": "^1.4.5-lts.1",
|
|
"pg": "^8.10.0",
|
|
"typeorm": "^0.3.16"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcryptjs": "^2.4.2",
|
|
"@types/cors": "^2.8.19",
|
|
"@types/express": "^4.17.17",
|
|
"@types/jsonwebtoken": "^9.0.2",
|
|
"@types/multer": "^1.4.7",
|
|
"@types/node": "^20.4.5",
|
|
"nodemon": "^3.0.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.1.6"
|
|
}
|
|
}
|