groupomania/package.json

46 lines
1.1 KiB
JSON

{
"name": "groupomania-openclassrooms",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch src -e js,ts,json --exec 'ts-node src/index.ts'",
"build": "cd client && pnpm build",
"start": "ts-node src/index.ts",
"db": "prisma studio",
"db-build": "prisma generate; prisma db push"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/ms": "^0.7.31",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.4",
"@types/uuid": "^8.3.4",
"nodemon": "^2.0.19",
"prisma": "^4.2.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@prisma/client": "^4.2.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"ms": "^2.1.3",
"multer": "1.4.5-lts.1",
"uuid": "^8.3.2",
"zod": "^3.18.0"
}
}