forked from Neomar706/clon-mercadolibre-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "clon-mercadolibre-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"prisma:studio": "prisma studio",
"prisma:preload": "rimraf prisma/migrations && prisma migrate dev --name initial && node pruebas/prismaPreload.js",
"build": "rimraf dist && babel src --out-dir dist",
"start": "node dist/index.js",
"rr": "rimraf dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.11.0",
"@quixo3/prisma-session-store": "^3.1.11",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cloudinary": "^1.33.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-mysql-session": "^3.0.0",
"express-session": "^1.17.3",
"jsonwebtoken": "^9.0.0",
"mysql2": "^2.3.3",
"nodemailer": "^6.8.0",
"puppeteer": "^19.8.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"localtunnel": "^2.0.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"prisma": "^4.11.0",
"rimraf": "^3.0.2"
}
}