-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "back-next-payment",
"version": "1.0.0",
"description": "api gateway ",
"main": "src/server.js",
"type": "module",
"engines": {
"node": "22.7.0"
},
"scripts": {
"start:dev": "tsx watch src/server.ts",
"start:dev-env": "tsx --env-file=.env watch src/server.ts",
"start": "node build/server.cjs",
"build": "tsup src --out-dir build",
"build:cloud": " npx prisma generate && npx tsup src --out-dir build && node build/server.cjs",
"lint:format": "npx @biomejs/biome format --write ./",
"lint": "npx @biomejs/biome lint --write ./",
"lint:check": "npx @biomejs/biome check --write ./",
"prismaStudio": "prisma studio"
},
"keywords": ["api", "api gateway"],
"author": "fabio",
"license": "MIT",
"dependencies": {
"@biomejs/biome": "1.9.0",
"@prisma/client": "^5.19.1",
"axios": "1.7.7",
"bcrypt": "5.1.1",
"body-parser": "1.20.3",
"cors": "2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"imgbb-uploader": "1.5.1",
"jsonwebtoken": "9.0.2",
"mercadopago": "^2.0.15",
"multer": "1.4.5-lts.1",
"nodemailer": "6.9.15",
"sharp": "0.33.5"
},
"devDependencies": {
"@types/bcrypt": "5.0.2",
"@types/content-type": "1.1.8",
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/jsonwebtoken": "9.0.6",
"@types/multer": "1.4.12",
"@types/node": "22.4.0",
"@types/nodemailer": "6.4.16",
"prisma": "^5.19.1",
"tsup": "8.2.4",
"tsx": "4.17.0",
"typescript": "5.5.4",
"zod": "3.23.8"
}
}