forked from secret-tech/backend-ico-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.18 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
{
"name": "icodashboard-space",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "nodemon -w ./src -e ts ./src/bin/www --exec ts-node",
"lint": "tslint './src/**/*.ts'",
"lintFix": "tslint --fix './src/**/*.ts'",
"test": "nyc mocha ./src/**/*.spec.ts --require test/prepare.ts",
"build": "tsc -p tsconfig.build.json --outDir dist",
"serve": "node ./dist/bin/www.js"
},
"nyc": {
"exclude": [
"src/**/*.spec.ts"
]
},
"dependencies": {
"abi-decoder": "1.0.9",
"bcrypt-nodejs": "0.0.3",
"bip39": "2.4.0",
"body-parser": "~1.15.2",
"bull": "3.3.4",
"coinpayments": "1.1.6",
"debug": "~2.2.0",
"dotenv": "4.0.0",
"ethereumjs-wallet": "0.6.0",
"express": "~4.14.0",
"http-status": "1.2.0",
"i18next": "11.3.3",
"inversify": "4.2.0",
"inversify-express-utils": "4.0.0",
"joi": "13.4.0",
"jsonwebtoken": "^7.2.1",
"lru-cache": "4.1.1",
"mailcomposer": "4.0.2",
"mailgun-js": "0.13.1",
"mongodb": "2.2.33",
"morgan": "1.9.0",
"node-mailjet": "3.2.1",
"node-uuid": "^1.4.7",
"qr-image": "3.2.0",
"redis": "2.8.0",
"reflect-metadata": "0.1.10",
"rolling-rate-limiter": "0.1.9",
"typeorm": "0.1.1",
"web-request": "1.0.7",
"web3": "1.0.0-beta.26",
"winston": "2.4.0"
},
"devDependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/bull": "3.0.2",
"@types/chai": "3.4.34",
"@types/chai-http": "3.0.3",
"@types/debug": "0.0.29",
"@types/express": "4.0.34",
"@types/faker": "4.1.1",
"@types/i18next": "8.4.3",
"@types/joi": "10.4.0",
"@types/jsonwebtoken": "7.2.0",
"@types/mocha": "2.2.38",
"@types/nock": "9.1.3",
"@types/node-uuid": "0.0.28",
"@types/redis": "2.8.6",
"@types/winston": "2.3.8",
"chai": "3.5.0",
"chai-http": "3.0.0",
"faker": "4.1.0",
"mocha": "3.2.0",
"mocha-prepare": "0.1.0",
"mongodb-restore": "1.6.2",
"nock": "9.2.5",
"nodemon": "^1.11.0",
"nyc": "10.0.0",
"ts-node": "3.3.0",
"tslint": "5.7.0",
"tslint-config-standard": "5.0.2",
"tslint-loader": "3.5.3",
"typemoq": "2.0.1",
"typescript": "2.5.3"
}
}