-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.16 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": "hdr_mvp_gateway_auth_web_server",
"version": "0.0.1",
"description": "This application is the HDR Gateway, authentication and web server",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test:coverage": "jest --coverage",
"test": "jest --watch",
"lint": "eslint src/",
"sonarQube": "sonar-scanner"
},
"repository": {
"type": "git",
"url": "git+https://TrevorWardCIC@bitbucket.org/hdr_mvp_gateway/hdr_mvp_gateway_auth_web_server.git"
},
"author": "",
"license": "ISC",
"homepage": "https://bitbucket.org/hdr_mvp_gateway/hdr_mvp_gateway_auth_web_server#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"nodemailer": "^6.4.2",
"passport": "^0.4.0",
"passport-openidconnect": "0.0.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.2.1"
},
"devDependencies": {
"eslint": "^6.6.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"sonar-scanner": "^3.1.0"
}
}