forked from platzi/curso-nodejs-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1020 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
37
38
39
40
41
{
"name": "my-store",
"version": "1.0.0",
"description": "",
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"sequelize-cli": "^6.6.1"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"@hapi/boom": "^9.1.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.17.1",
"joi": "^17.4.2",
"mysql2": "^3.6.2",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.33.0"
},
"engines": {
"node": "14.x"
}
}