-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "alumni_student_platform_backend",
"version": "1.0.0",
"description": "Developing express backend application with PostgreSQL and Prisma ORM for Mobile Application",
"main": "server.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server.js",
"staging": "cross-env NODE_ENV=staging node server.js",
"db-pull": "dotenv -e .env.development -- npx prisma db pull ",
"db-push": "dotenv -e .env.development -- npx prisma db push ",
"db-pull:staging": "dotenv -e .env.staging -- npx prisma db pull ",
"db-push:staging": "dotenv -e .env.staging -- npx prisma db push ",
"db-studio": "dotenv -e .env.development -- npx prisma studio",
"db-studio:staging": "dotenv -e .env.staging -- npx prisma studio"
},
"author": "Sigma Blue Team",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.8.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.41.0",
"cors": "^2.8.5",
"dotenv-flow": "^3.2.0",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.3",
"helmet": "^7.0.0",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.7",
"sharp": "^0.32.6",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv-cli": "^7.2.1",
"nodemon": "^2.0.22",
"prisma": "^3.8.1"
}
}