-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 875 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 875 Bytes
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
{
"name": "notification",
"version": "1.0.0",
"description": "Notifications Service (Internal) - Reposible to send out notifications to users regarding various topics",
"main": "./src/server.js",
"scripts": {
"start": "node ./src/server.js",
"test": "jest --coverage",
"watch": "jest --coverage --watchAll",
"lint": "eslint ./src && eslint ./tests",
"testOnly" : "jest",
"checkCodeQuality" : "eslint ./src && eslint ./tests && jest --coverage"
},
"author": "Rithin Chalumuri",
"license": "MIT",
"dependencies": {
"amqp-ts-async": "^1.3.7",
"dotenv": "^6.2.0",
"koa": "^2.6.2",
"nodemailer": "^7.0.11",
"winston": "^3.1.0"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"supertest": "^3.3.0"
}
}