40 lines
983 B
JSON
40 lines
983 B
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": "tsc src/index.ts",
|
|
"start": "node dist/index.js",
|
|
"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/node": "^18.7.4",
|
|
"nodemon": "^2.0.19",
|
|
"prisma": "^4.2.1",
|
|
"ts-node": "^10.9.1",
|
|
"tsconfig-paths": "^4.1.0",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^4.2.1",
|
|
"bcrypt": "^5.0.1",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.0.1",
|
|
"express": "^4.18.1",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"ms": "^2.1.3",
|
|
"zod": "^3.18.0"
|
|
}
|
|
}
|