- Complete project structure with Next.js frontend - GraphQL API backend with Apollo Server - Portal application with NextAuth - Crossplane Proxmox provider - GitOps configurations - CI/CD pipelines - Testing infrastructure (Vitest, Jest, Go tests) - Error handling and monitoring - Security hardening - UI component library - Documentation
36 lines
836 B
JSON
36 lines
836 B
JSON
{
|
|
"name": "phoenix-sankofa-api",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/server.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/server.js",
|
|
"type-check": "tsc --noEmit",
|
|
"db:migrate": "node dist/db/migrate.js",
|
|
"db:seed": "tsx src/db/seed.ts"
|
|
},
|
|
"dependencies": {
|
|
"@apollo/server": "^4.9.5",
|
|
"@as-integrations/fastify": "^1.1.0",
|
|
"fastify": "^4.24.3",
|
|
"pg": "^8.11.3",
|
|
"graphql": "^16.8.1",
|
|
"graphql-tag": "^2.12.6",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"bcryptjs": "^2.4.3",
|
|
"zod": "^3.22.4",
|
|
"dotenv": "^16.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.12.0",
|
|
"@types/pg": "^8.10.9",
|
|
"@types/jsonwebtoken": "^9.0.5",
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"typescript": "^5.4.0",
|
|
"tsx": "^4.7.0"
|
|
}
|
|
}
|
|
|