{ "name": "merit-opgave", "version": "1.0.0", "description": "", "main": "src/index.ts", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "tsc", "start": "node dist/index.js", "dev": "concurrently \"tsc --watch\" \"nodemon -q dist/index.js\"", "migrate": "ts-node src/migrations/index.ts", "populate": "ts-node src/migrations/populate.ts" }, "author": "fbp", "license": "ISC", "dependencies": { "bcrypt": "^5.1.0", "cookie-parser": "^1.4.6", "dayjs": "^1.11.7", "dotenv": "^16.0.3", "express": "^4.18.2", "joi": "^17.9.1", "jsonwebtoken": "^9.0.0", "pg": "^8.10.0" }, "devDependencies": { "@types/bcrypt": "^5.0.0", "@types/cookie-parser": "^1.4.3", "@types/express": "^4.17.17", "@types/jsonwebtoken": "^9.0.1", "@types/node": "^18.15.11", "@types/pg": "^8.6.6", "concurrently": "^8.0.1", "nodemon": "^2.0.22", "ts-node": "^10.9.1", "typescript": "^5.0.4" } }