Initial commit: EKAI v2 - Portal de Notícias IA (React + NestJS)

This commit is contained in:
bigtux
2026-02-10 15:46:21 -03:00
commit b590bedd4c
59 changed files with 11706 additions and 0 deletions

41
backend/package.json Normal file
View File

@@ -0,0 +1,41 @@
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "ts-node src/main.ts",
"seed": "ts-node src/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@nestjs/common": "^11.1.13",
"@nestjs/core": "^11.1.13",
"@nestjs/jwt": "^11.0.2",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.1.13",
"@nestjs/typeorm": "^11.0.0",
"bcryptjs": "^3.0.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.18.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"typeorm": "^0.3.28"
},
"devDependencies": {
"@nestjs/cli": "^11.0.16",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.6",
"@types/node": "^25.2.2",
"@types/passport-jwt": "^4.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}