-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
81 lines (81 loc) · 2.78 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pets-love",
"version": "1.0.0",
"description": "Pets Love is an app created with the goal of helping animal shelters, veterinarians, adopters and all of those that wish to adopt a pet.",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"node dist/index.js\" ",
"prisma:migrate": "npx prisma migrate dev --preview-feature",
"migrate": "prisma migrate deploy",
"prisma:seed": "ts-node --loader ts-node/esm src/database/prisma/seed.ts"
},
"keywords": [],
"author": "alex-robaina",
"license": "MIT",
"dependencies": {
"@google-cloud/storage": "^7.1.0",
"@prisma/client": "^5.3.0",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/google-cloud__storage": "^2.3.1",
"@types/nodemailer-smtp-transport": "^2.7.8",
"@types/qrcode": "^1.5.4",
"@types/sharp": "^0.32.0",
"aws-sdk": "^2.814.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-promise-router": "^4.0.1",
"express-validator": "^7.0.1",
"form-data": "^3.0.0",
"googleapis": "^135.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-google-storage": "^1.3.0",
"multer-s3": "^2.10.0",
"nodemailer": "^6.7.2",
"nodemailer-smtp-transport": "^2.7.4",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"prisma": "^5.3.0",
"qrcode": "^1.5.3",
"react-image-file-resizer": "^0.4.8"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.18",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.4",
"@types/multer-s3": "^2.7.8",
"@types/node": "^20.6.0",
"@types/nodemailer": "^6.4.4",
"@types/passport": "^1.0.4",
"@types/passport-jwt": "^3.0.6",
"@types/uuid": "^8.3.0",
"copyfiles": "^2.4.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"tsc-watch": "^4.2.9",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexrobaina/api-clean-code.git"
},
"bugs": {
"url": "https://github.com/alexrobaina/api-clean-code/issues"
},
"homepage": "https://github.com/alexrobaina/api-clean-code#readme",
"prisma": {
"schema": "src/database/prisma/schema.prisma",
"seed": "src/database/prisma/seed.ts"
}
}