-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 977 Bytes
/
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
{
"name": "user-dashboard",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "DEBUG=user-dashboard:* nodemon ./bin/www",
"format": "npx eslint -c eslint.config.mjs --fix"
},
"dependencies": {
"@prisma/client": "^5.16.1",
"@sendgrid/mail": "^8.1.3",
"bcrypt": "^5.1.1",
"connect-redis": "^7.1.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.4.5",
"ejs": "~2.6.1",
"express": "~4.16.1",
"express-session": "^1.18.0",
"express-validator": "^7.1.0",
"http-errors": "~1.6.3",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"morgan": "~1.9.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"ramda": "^0.30.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"eslint": "^9.6.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^3.1.4",
"prisma": "^5.16.1"
}
}