40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
JSON
{
|
|
"name": "p-experimentos-desarrollo",
|
|
"version": "1.0.0",
|
|
"description": "pruebas compose + express + posgre",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"test": "vitest watch",
|
|
"build": "npx tsc",
|
|
"dev": "tsx --watch ./src/server.ts",
|
|
"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/*"
|
|
}
|
|
}
|