-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 937 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 937 Bytes
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
{
"name": "zafnatshop-api",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"lint": "next lint",
"db:push": "npx prisma db push",
"db:pull": "npx prisma db pull",
"postinstall": "npx prisma db push"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^5.20.0",
"convert-excel-to-json": "^1.7.0",
"cors": "2.8.5",
"express": "4.21.1",
"express-validator": "7.2.0",
"firebase-admin": "^12.6.0",
"mercadopago": "^2.0.15",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.7.5",
"dotenv": "^16.4.5",
"nodemon": "^3.1.7",
"prisma": "^5.20.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
}
}