37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"name": "kittyBE",
|
|
"version": "0.0.1",
|
|
"description": "Your go-to place for short and memorable URLs.",
|
|
"type": "commonjs",
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.19",
|
|
"@types/express": "^5.0.6",
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/lodash": "^4.17.21",
|
|
"@types/node": "^22.19.3",
|
|
"nodemon": "^3.1.11",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^17.2.3",
|
|
"express": "^5.1.0",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"lodash": "^4.17.21",
|
|
"pg": "^8.16.3",
|
|
"reflect-metadata": "^0.2.2",
|
|
"swagger-jsdoc": "^6.2.8",
|
|
"swagger-ui-express": "^5.0.1",
|
|
"typeorm": "0.3.27",
|
|
"zod": "^4.2.1"
|
|
},
|
|
"scripts": {
|
|
"start": "ts-node src/app.ts",
|
|
"server": "ts-node src/app.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"
|
|
}
|
|
}
|