Files
mern-template/server/package.json
dependabot[bot] f03cca1b35 Bump @types/node from 22.13.5 to 22.13.12 in /server (#50)
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Ben Elferink <ben.elferink@icloud.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ben Elferink <ben.elferink@icloud.com>
2025-03-24 20:48:45 +02:00

30 lines
658 B
JSON

{
"name": "server",
"version": "0.1.0",
"private": true,
"type": "commonjs",
"main": "src/index.ts",
"scripts": {
"dev": "npx tsx src/index.ts",
"build": "rm -rf dist && npx tsc",
"start": "node dist/index.js"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.10.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.12",
"typescript": "^5.8.2"
}
}