Files

40 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2025-12-26 11:36:11 +01:00
{
"name": "p-experimentos-desarrollo",
"version": "1.0.0",
"description": "pruebas compose + express + posgre",
"main": "index.ts",
"scripts": {
"test": "vitest watch",
"build": "npx tsc",
2025-12-29 09:34:18 +01:00
"dev": "tsx --watch ./src/app.ts",
2025-12-26 11:36:11 +01:00
"start": "node dist/index.js",
"typecheck": "npx tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@tsconfig/node22": "^22.0.5",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"@types/supertest": "^6.0.3",
"prettier": "^3.7.4",
"supertest": "^7.1.4",
"tsx": "^4.21.0",
"vitest": "^4.0.16"
},
"imports": {
"#*": "./src/*"
}
}