-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 946 Bytes
/
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
{
"name": "skeleton",
"version": "1.0.0",
"description": "- Express - PostgreSQL - Sequelize ORM - Autenticación con Tokens - Bcrypt para hashear contraseñas - Uso de Json Web Token",
"main": "index.js",
"scripts": {
"start": "node ./src/app.js",
"dev": "nodemon ./src/app.js",
"test": "./node_modules/.bin/mocha ./test/ejemplo.test.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.24.0",
"swagger": "^0.7.5",
"swagger-ui-express": "^4.6.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"mocha": "^10.1.0",
"nodemon": "^2.0.20"
}
}