-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.08 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "primost",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/babel src -d dist",
"build:watch": "./node_modules/.bin/babel src -d dist --watch",
"start:producer:prod": "./node_modules/.bin/pm2 start pm2-producer.json",
"stop:producer:prod": "./node_modules/.bin/pm2 delete \"primost producer\"",
"start:consumer:prod": "./node_modules/.bin/pm2 start pm2-consumer.json",
"stop:consumer:prod": "./node_modules/.bin/pm2 delete \"primost consumer\"",
"start:producer:watch": "./node_modules/.bin/nodemon dist/producer.js",
"start:consumer:watch": "./node_modules/.bin/nodemon dist/consumer.js",
"dev": "./node_modules/.bin/concurrently -n build,producer,consumer -c white.bold,magenta.bold,cyan.bold \"yarn build:watch\" \"yarn start:producer:watch\" \"yarn start:consumer:watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/dragma/primost.git"
},
"keywords": [
"mailing",
"queue",
"aws",
"redis",
"server",
"http"
],
"author": "Florent Béjina",
"license": "MIT",
"bugs": {
"url": "https://github.com/dragma/primost/issues"
},
"homepage": "https://github.com/dragma/primost#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
},
"dependencies": {
"aws-sdk": "^2.344.0",
"body-parser": "^1.18.3",
"bull": "^3.4.8",
"concurrently": "^4.0.1",
"cors": "^2.8.4",
"express": "^4.16.4",
"http-errors": "^1.7.1",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"morgan": "^1.9.1",
"nodemailer": "^4.6.8",
"nodemon": "^1.18.5",
"pm2": "^3.2.2",
"uuid": "^3.3.2",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.4.0"
}
}