39 lines
956 B
JSON
39 lines
956 B
JSON
{
|
|
"name": "notesfrais-backend",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"migrate": "tsx src/scripts/migrate.ts",
|
|
"init-users": "tsx src/scripts/initUsers.ts"
|
|
},
|
|
"dependencies": {
|
|
"bcryptjs": "^2.4.3",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.18.3",
|
|
"helmet": "^7.1.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"multer": "^1.4.5-lts.1",
|
|
"nodemailer": "^6.9.13",
|
|
"pdf-lib": "^1.17.1",
|
|
"pg": "^8.11.5",
|
|
"uuid": "^9.0.1",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcryptjs": "^2.4.6",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/jsonwebtoken": "^9.0.6",
|
|
"@types/multer": "^1.4.11",
|
|
"@types/node": "^20.12.7",
|
|
"@types/nodemailer": "^6.4.14",
|
|
"@types/pg": "^8.11.5",
|
|
"@types/uuid": "^9.0.8",
|
|
"tsx": "^4.7.3",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|