-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.25 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
{
"name": "athlympian-backend",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "nodemon start src/app.js",
"lint:fix": "eslint . --fix",
"prisma:generate": "prisma generate --schema=./src/models/schema.prisma",
"prisma:migrate": "prisma migrate dev --schema=./src/models/schema.prisma",
"prisma:format": "prisma format --schema=./src/models/schema.prisma"
},
"repository": "https://github.com/Zainab-Saad/athlympian-backend",
"author": "Zainab Saad <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^3.0.2"
},
"dependencies": {
"@prisma/client": "^5.7.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"chalk": "^5.3.0",
"cookie-parser": "^1.4.6",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.7",
"prisma": "^5.7.0",
"uuid": "^9.0.1",
"winston": "^3.11.0"
}
}