-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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": "api",
"version": "1.0.0",
"description": "Black Group Design",
"main": "index.js",
"scripts": {
"start": "nodemon -L index.js",
"dev": "nodemon index.js",
"test": "mocha -w ./tests/**/*.spec.js"
},
"author": "Henry",
"license": "ISC",
"engines": {
"node": ">=12.18.3",
"npm": ">=6.14.6"
},
"dependencies": {
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"body-parser": "^1.19.0",
"cloudinary": "^1.41.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.18.2",
"handlebars": "^4.7.8",
"jsonwebtoken": "^9.0.2",
"mercadopago": "^1.5.17",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.9.7",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.33.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.22",
"supertest": "^6.0.1",
"supertest-session": "^4.1.0"
}
}