forked from adoptametech/Adoptame-Api
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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": "apirest-pg",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon index.js",
"production": "cross-env NODE_ENV=production node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=production node swagger.js",
"doc": "node swagger.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^7.3.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.30.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-jwt": "^7.7.5",
"express-oauth2-jwt-bearer": "^1.1.0",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.1.4",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.7.7",
"openid": "^2.0.10",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.2",
"swagger-autogen": "^2.21.5",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"nodemon": "^2.0.18"
}
}