{ "name": "server", "version": "1.0.0", "main": "src/index.ts", "license": "MIT", "scripts": { "build": "npx tsc", "start": "node dist/index.js", "dev": "rm -rf ./dist && concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"", "test": "NODE_ENV=test jest" }, "dependencies": { "bcrypt": "^5.0.1", "class-validator": "^0.13.2", "dotenv": "^16.0.1", "express": "^4.18.1", "jsonwebtoken": "^8.5.1", "pg": "^8.7.3", "redis": "^4.2.0", "reflect-metadata": "^0.1.13", "typeorm": "^0.3.7" }, "devDependencies": { "@types/bcrypt": "^5.0.0", "@types/express": "^4.17.13", "@types/jest": "^28.1.4", "@types/jsonwebtoken": "^8.5.8", "@types/node": "^18.0.3", "concurrently": "^7.2.2", "jest": "^28.1.2", "nodemon": "^2.0.19", "ts-jest": "^28.0.5", "ts-node": "^10.8.2", "typescript": "^4.7.4" } }