-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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": "node-express-postgres-boilerplate",
"version": "1.0.0",
"description": "Three teir Node.js and express application boilerplate using pure OOP, Awilix dependency injection, Postgres database, Dockerized",
"main": "src/app.js",
"repository": "https://github.com/julietezekwe/Node-Express-Postgres-Boilerplate.git",
"author": "chidimma Ezekwe <julietezekwe@gmail.com>",
"license": "MIT",
"scripts": {
"watch": "nodemon",
"migrate": "./node_modules/.bin/sequelize db:migrate",
"dev": "yarn migrate && babel-node -- ./src/bin/www.js"
},
"dependencies": {
"auto-bind": "^2.1.0",
"awilix": "^4.2.2",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"morgan": "^1.9.1",
"node-cron": "^2.0.3",
"nodemon": "^1.19.1",
"pg": "^7.12.0",
"pg-hstore": "^2.3.3",
"redis": "^2.8.0",
"sequelize": "^5.15.1",
"sequelize-cli": "^5.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2"
}
}