-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 2.73 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "hdruk-rdt-api",
"config": {
"mongodbMemoryServer": {
"version": "5.0.0-rc7"
}
},
"version": "0.1.1",
"private": true,
"dependencies": {
"@google-cloud/bigquery": "^5.9.3",
"@google-cloud/monitoring": "^3.0.3",
"@google-cloud/pubsub": "^2.19.4",
"@google-cloud/storage": "^5.3.0",
"@hubspot/api-client": "^4.1.0",
"@sendgrid/mail": "^7.1.0",
"ajv": "^8.1.0",
"ajv-formats": "^2.0.2",
"async": "^3.2.0",
"await-to-js": "^2.1.1",
"axios": "0.21.3",
"axios-retry": "^3.1.9",
"base64url": "^3.0.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"btoa": "^1.2.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"crypto-js": "^4.0.0",
"csurf": "^1.11.0",
"discourse-sso": "^1.0.3",
"docxtemplater": "^3.26.4",
"dotenv": "^8.2.0",
"escape-html": "^1.0.3",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-session": "^1.17.1",
"express-validator": "^6.6.1",
"faker": "^5.3.1",
"flat": "^5.0.2",
"form-data": "^3.0.0",
"googleapis": "^55.0.0",
"jose": "^2.0.2",
"jsonwebtoken": "^8.5.1",
"keygrip": "^1.1.0",
"lodash": "^4.17.19",
"mailchimp-api-v3": "^1.15.0",
"migrate-mongo": "^9.0.0",
"moment": "^2.29.3",
"mongoose": "^5.12.7",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.7.5",
"oidc-provider": "^6.29.3",
"passport": "^0.4.1",
"passport-azure-ad-oauth2": "0.0.4",
"passport-google-oauth": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-linkedin-oauth2": "^2.0.0",
"passport-openidconnect": "0.0.2",
"passport-orcid": "0.0.4",
"pizzip": "^3.1.1",
"prettier": "^2.2.1",
"query-string": "^6.12.1",
"randomstring": "^1.1.5",
"redis": "4.0.0",
"simple-gcp-logging": "git+https://github.com/HDRUK/simple-gcp-logging.git#main",
"sinon": "^15.0.0",
"snyk": "^1.334.0",
"swagger-ui-express": "^4.1.4",
"test": "^0.6.0",
"transformobject": "^0.3.1",
"uuid": "^8.3.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@shelf/jest-mongodb": "^1.2.3",
"babel-jest": "^26.6.3",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"mongodb-memory-server": "6.9.2",
"nodemon": "^2.0.3",
"plop": "^2.7.4",
"supertest": "^6.3.3"
},
"scripts": {
"start-with-migrate": "./node_modules/.bin/migrate up && node index.js",
"start": "node index.js",
"server": "nodemon --ignore 'src/**/*.json' index.js",
"debug": "nodemon --inspect=0.0.0.0:3001 index.js",
"build": "",
"test": "jest --runInBand",
"eject": "",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect",
"prettify": "prettier --write \"src/**/*.{scss,js,jsx}\"",
"prettify-test": "prettier --write \"test/**/*.js\""
},
"proxy": "http://localhost:3001",
"snyk": true
}