-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
51
{
"name": "sequalize-express-mysql-postgre",
"version": "1.0.0",
"description": "api rest node and mysql and postgresql",
"main": "src/index.js",
"scripts": {
"dev": "nodemon src/index.js --exec babel-node",
"build": "babel src --out-dir dist",
"start": "node dist/index.js",
"sequelize:migrate": "npx sequelize-cli db:migrate",
"sequelize:seeds": "npx sequelize-cli db:seed:all",
"sequelize:seeds:undo": "npx sequelize-cli db:seed:undo:all"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.8.3",
"@hapi/joi": "^17.1.0",
"@types/bcryptjs": "^2.4.2",
"babel-preset-minify": "^0.5.1",
"bcryptjs": "^2.4.3",
"core-js": "^2.6.11",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-list-endpoints": "^4.0.1",
"express-session": "^1.17.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"mysql2": "^2.1.0",
"passport": "^0.4.1",
"passport-http-bearer": "^1.0.1",
"pg": "^7.18.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.3",
"sequelize-cli": "^5.5.1",
"swagger-node-express": "^2.1.3",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"@types/express": "^4.17.2",
"@types/hapi": "^18.0.3",
"faker": "^4.1.0",
"nodemon": "^2.0.2"
}
}