-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "grupo-Asuservice-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/IIC2513/grupo-Asuservice-backend.git",
"license": "MIT",
"dependencies": {
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"and": "^0.0.3",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"jsonwebtoken": "^9.0.0",
"koa": "^2.14.2",
"koa-body": "^6.0.1",
"koa-bodyparser": "^4.4.0",
"koa-jwt": "^4.0.4",
"koa-logger": "^3.2.1",
"koa-router": "^12.0.0",
"koa-static": "^5.0.0",
"koa2-swagger-ui": "^5.8.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.22",
"pg": "^8.11.0",
"sequelize": "^6.31.1",
"sequelize-cli": "^6.6.1",
"yamljs": "^0.3.0"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"deploy": "node start.js",
"db:migrate": "sequelize db:migrate",
"db:seed": "sequelize db:seed:all"
},
"devDependencies": {
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2"
}
}