37 lines
823 B
JSON
37 lines
823 B
JSON
{
|
|
"name": "prueba_intricom",
|
|
"version": "1.0.0",
|
|
"description": "Rest API using Node.js, TypeScript, Express, Posgresql",
|
|
"main": "src/server.ts",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "tsc",
|
|
"dev": "node ./build/server.js",
|
|
"start": "tsc && npm run dev"
|
|
},
|
|
"keywords": [
|
|
"express",
|
|
"typescript",
|
|
"api",
|
|
"posgresql",
|
|
"nodejs"
|
|
],
|
|
"author": "bezkoder",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^5.0.0",
|
|
"@types/node": "^22.10.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.21.1",
|
|
"pg": "^8.13.1",
|
|
"sequelize": "^6.37.5",
|
|
"sequelize-typescript": "^2.1.6"
|
|
}
|
|
}
|