-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.75 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "c18-backend",
"version": "1.0.0",
"description": "C18 Backend Repositorio",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon src/server.js",
"migration:create": "npx sequelize-cli migration:generate --name",
"migrate": "npx sequelize-cli db:migrate",
"migration:undo": "npx sequelize-cli db:migrate:undo",
"seed:create": "npx sequelize-cli seed:generate --name ",
"seed:all": "npx sequelize-cli db:seed:all",
"seed:undo": "npx sequelize-cli db:seed:undo:all"
},
"authors": [
{
"name": "Jonathan Riffo",
"email": "jonathan.riffo7@gmail.com",
"website": "https://jonathannriffo.website"
},
{
"name": "Giselle Cifuentes",
"email": "gJqX9@example.com"
},
{
"name": "Miguel Brown",
"email": "gJqX9@example.com"
},
{
"name": "Luis Sanchez",
"email": "hlcxpl@gmail.com"
}
],
"repository": "https://github.com/dlab-team/c18-backend",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.19.1",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.13",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "^3.13.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"globals": "^15.0.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"sequelize-cli": "^6.6.2"
}
}