-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
77 lines (77 loc) · 2.45 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
{
"name": "incetives-service",
"version": "0.0.0",
"private": true,
"main": "node ./bin",
"scripts": {
"start": "NODE_ENV=production node ./bin",
"stage": "NODE_ENV=staging node ./bin",
"dev-mac": "NODE_ENV=development nodemon ./bin",
"prod-mac": "NODE_ENV=production nodemon ./bin",
"stage-mac": "NODE_ENV=staging nodemon ./bin",
"dev-pc": "SET NODE_ENV=development&&nodemon ./bin",
"prod-pc": "SET NODE_ENV=production&&nodemon ./bin",
"stage-pc": "SET NODE_ENV=staging&&nodemon ./bin",
"prettier": "prettier --single-quote --print-width 80 --trailing-comma all --write 'src/**/*.js'",
"test": "nyc --reporter=lcov mocha ./**/test/ut_*.js --exit"
},
"_moduleAliases": {
"@root": ".",
"@models": "models/",
"@utils": "utils",
"@controllers": "controllers",
"@config": "config",
"@middleware": "middleware",
"@scripts": "scripts",
"@routes": "routes",
"@bin": "bin"
},
"dependencies": {
"@log4js-node/slack": "^1.0.0",
"app-module-path": "^2.2.0",
"axios": "^1.4.0",
"body-parser": "~1.18.2",
"bull": "^4.11.3",
"compression": "^1.7.4",
"connect-mongo": "^5.0.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.3",
"express-validator": "^6.12.2",
"google-libphonenumber": "^3.2.32",
"helmet": "^3.21.1",
"http-status": "^1.5.0",
"ioredis": "^5.3.2",
"is-empty": "^1.2.0",
"joi": "^17.9.2",
"jsonrepair": "^3.2.0",
"kafkajs": "^2.2.4",
"log4js": "^6.3.0",
"module-alias": "^2.2.3",
"mongoose": "^5.13.7",
"mongoose-unique-validator": "^2.0.3",
"morgan": "~1.9.0",
"mtn-momo": "^2.0.0",
"node-cron": "^3.0.2",
"node-fetch": "^2.6.1",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.4",
"nodemon": "^1.19.4",
"request": "^2.88.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.4.0",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0",
"supertest": "^6.3.3"
}
}