-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
112 lines (112 loc) · 3.23 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
105
106
107
108
109
110
111
112
{
"name": "auth-service",
"version": "0.0.0",
"private": true,
"main": "./bin",
"scripts": {
"start": "NODE_ENV=production node ./bin",
"stage": "NODE_ENV=staging node ./bin",
"dev-mac": "NODE_ENV=development nodemon --trace-warnings ./bin",
"stage-mac": "NODE_ENV=staging nodemon ./bin",
"prod-mac": "NODE_ENV=production nodemon ./bin",
"dev-pc": "set NODE_ENV=development&&nodemon ./bin",
"stage-pc": "set NODE_ENV=staging&&nodemon ./bin",
"prod-pc": "set NODE_ENV=production&&nodemon ./bin",
"create-env": "printenv > .env",
"test": "nyc --reporter=cobertura mocha ./**/test/ut_*.js --exit"
},
"_moduleAliases": {
"@root": ".",
"@models": "models",
"@utils": "utils",
"@controllers": "controllers",
"@config": "config",
"@middleware": "middleware",
"@scripts": "scripts",
"@routes": "routes",
"@bin": "bin",
"@validators": "validators"
},
"dependencies": {
"@google-cloud/datastore": "^5.1.0",
"@google-cloud/debug-agent": "^4.0.4",
"@log4js-node/slack": "^1.0.0",
"@mailchimp/mailchimp_marketing": "^3.0.75",
"@paddle/paddle-node-sdk": "^2.1.3",
"app-module-path": "^2.2.0",
"async": "^3.2.5",
"async-retry": "^1.3.3",
"axios": "^1.4.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.20.2",
"clean-deep": "^3.4.0",
"company-email-validator": "^1.0.6",
"compression": "^1.7.4",
"connect-mongo": "^3.2.0",
"continuation-local-storage": "^3.2.1",
"cookie-parser": "~1.4.3",
"crypto": "^1.0.1",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"email-existence": "^0.1.6",
"express": "^4.18.1",
"express-fileupload": "^1.2.1",
"express-formidable": "^1.2.0",
"express-rate-limit": "^7.4.1",
"express-session": "^1.17.3",
"express-validation": "^1.0.3",
"express-validator": "^6.12.1",
"firebase-admin": "^11.10.1",
"firebase-functions": "^4.2.1",
"generate-password": "^1.5.1",
"gstore-node": "^7.2.4",
"helmet": "^3.21.1",
"http-status": "^1.4.0",
"ioredis": "^5.3.2",
"ip-range-check": "^0.2.0",
"is-empty": "^1.2.0",
"jade": "~1.11.0",
"joi": "^14.3.1",
"jsonrepair": "^3.0.2",
"jsonwebtoken": "^8.5.1",
"kafkajs": "^2.2.3",
"log4js": "^6.7.0",
"md5": "^2.3.0",
"module-alias": "^2.2.2",
"moment-timezone": "^0.5.41",
"mongoose": "^5.12.14",
"mongoose-unique-validator": "^2.0.3",
"morgan": "~1.9.0",
"node-cron": "^3.0.2",
"nodemailer": "^6.6.1",
"nyc": "^15.1.0",
"passport": "^0.6.0",
"passport-auth-token": "^1.0.1",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"redis": "^4.6.7",
"saslprep": "^1.0.3",
"serve-favicon": "~2.4.5",
"tslib": "^2.4.0",
"validator": "^11.1.0",
"winston": "^3.8.2",
"winston-mongodb": "^5.1.1",
"xoauth2": "^1.2.0"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"faker": "^5.5.3",
"js-yaml": "^4.1.0",
"mocha": "^8.4.0",
"mock-req-res": "^1.2.1",
"nodemon": "^1.19.3",
"proxyquire": "^2.1.3",
"rewire": "^6.0.0",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"supertest": "^6.3.3"
}
}