-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "proyecto-arquitectura-de-sistemas-ii",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"lint": "eslint",
"migrations:generate": "sequelize-cli migration:generate --name",
"migrations:run": "sequelize-cli db:migrate",
"migrations:revert": "sequelize-cli db:migrate:undo",
"migrations:delete": "sequelize-cli db:migrate:undo:all",
"seed:generate": "sequelize-cli seed:generate --name",
"seed:run": "sequelize-cli db:seed:all"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"nodemon": "^3.1.9",
"prettier": "^2.3.2",
"sequelize-cli": "^6.6.2"
},
"description": "",
"dependencies": {
"@hapi/boom": "^10.0.1",
"axios": "^1.8.4",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"joi": "^17.13.3",
"pg": "^8.13.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.6",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0"
}
}