-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (36 loc) · 1.05 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
{
"name": "node-notification-scheduler-service",
"version": "0.1.0",
"scripts": {
"start": "nodemon ./bin/www -w server -e html,js,scss --ignore build",
"generate-users": "NODE_OPTIONS=--max-old-space-size=140096 node server/seed/generateUsers.js",
"start:dev": "./node_modules/.bin/nodemon ./bin/www -w app.js -w server",
"migrate": "sequelize db:migrate"
},
"dependencies": {
"amqplib": "^0.5.3",
"body-parser": "^1.18.3",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"morgan": "^1.9.1",
"node-schedule": "^1.3.2",
"nodemon": "^1.18.10",
"pg": "6.1.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.1.0",
"sequelize-cli": "^5.5.0"
},
"keywords": [
"rabbitmq",
"docker",
"boilerplate",
"microservice"
],
"author": "mihalskiy <mihalskiy.rv@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mihalskiy/node-notification-scheduler-service/issues"
},
"homepage": "https://github.com/mihalskiy/node-notification-scheduler-service#readme"
}