28 lines
867 B
JSON
28 lines
867 B
JSON
{
|
|
"name": "kittyBE",
|
|
"version": "0.0.1",
|
|
"description": "Your go-to place for short and memorable URLs.",
|
|
"type": "commonjs",
|
|
"devDependencies": {
|
|
"@types/node": "^22.19.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^17.2.3",
|
|
"express": "^5.1.0",
|
|
"pg": "^8.16.3",
|
|
"reflect-metadata": "^0.2.2",
|
|
"swagger-jsdoc": "^6.2.8",
|
|
"swagger-ui-express": "^5.0.1",
|
|
"typeorm": "0.3.27"
|
|
},
|
|
"scripts": {
|
|
"start": "ts-node src/index.ts",
|
|
"typeorm": "typeorm-ts-node-commonjs",
|
|
"newMigration": "typeorm-ts-node-commonjs migration:generate -p -d ./src/data-source.ts",
|
|
"pendingMigration": "typeorm-ts-node-commonjs migration:run -d ./src/data-source.ts",
|
|
"server": "ts-node src/app.ts"
|
|
}
|
|
}
|