-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
94 lines (94 loc) · 2.6 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
{
"name": "jincor-backend-token-wallets",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "nodemon -w ./src -e ts --exec ts-node src/main",
"start:test": "nodemon -w ./src -e ts --exec mocha -r ts-node/register -r test/prepare.ts src/**/*.spec.ts",
"lint": "tslint 'src/**/*.ts'",
"lintFix": "tslint --fix 'src/**/*.ts'",
"test": "mocha -r ts-node/register -r test/prepare.ts src/**/*.spec.ts",
"test:cover": "nyc mocha -r test/prepare.ts src/**/*.spec.ts",
"build": "tsc -p tsconfig.build.json --outDir dist",
"serve": "node dist/main.js"
},
"nyc": {
"exclude": [
"src/**/*.spec.ts"
]
},
"engines": {
"node": ">=8"
},
"dependencies": {
"abi-decoder": "1.1.0",
"bcrypt-nodejs": "0.0.3",
"bip39": "2.5.0",
"body-parser": "~1.18.2",
"bull": "3.3.8",
"debug": "~3.1.0",
"dotenv": "4.0.0",
"ethereumjs-wallet": "0.6.0",
"express": "~4.16.2",
"express-basic-auth": "1.1.3",
"express-bearer-token": "2.1.1",
"express-jwt": "5.3.1",
"express-winston": "2.5.1",
"http-status": "1.0.1",
"i18next": "11.3.2",
"inversify": "4.9.0",
"inversify-express-utils": "5.2.0",
"joi": "13.3.0",
"jsonwebtoken": "^8.1.0",
"lru-cache": "4.1.1",
"mailcomposer": "4.0.2",
"mailgun-js": "0.18.0",
"mongodb": "^2.2.33",
"morgan": "1.9.0",
"node-mailjet": "3.2.1",
"node-uuid": "^1.4.8",
"nsqjs": "0.10.1",
"prom-client": "10.2.2",
"qr-image": "3.2.0",
"redis": "2.8.0",
"reflect-metadata": "0.1.12",
"rolling-rate-limiter": "0.1.10",
"typeorm": "0.1.11",
"web-request": "1.0.7",
"web3": "1.0.0-beta.34",
"winston": "2.4.0"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/bull": "3.3.3",
"@types/chai": "4.1.1",
"@types/chai-as-promised": "7.1.0",
"@types/chai-http": "3.0.3",
"@types/debug": "0.0.30",
"@types/express": "4.11.0",
"@types/faker": "4.1.2",
"@types/http-status": "0.2.30",
"@types/i18next": "8.4.3",
"@types/joi": "13.0.5",
"@types/jsonwebtoken": "7.2.5",
"@types/mocha": "2.2.46",
"@types/node-uuid": "0.0.28",
"@types/nsqjs": "0.9.0",
"@types/redis": "2.8.4",
"@types/winston": "2.3.7",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"chai-http": "4.0.0",
"faker": "4.1.0",
"mocha": "5.0.0",
"mocha-prepare": "0.1.0",
"mongodb-restore": "1.6.2",
"nodemon": "1.17.5",
"nyc": "12.0.2",
"ts-node": "4.1.0",
"tslint": "5.9.1",
"tslint-config-standard": "7.0.0",
"typemoq": "2.1.0",
"typescript": "2.6.2"
}
}