This repository has been archived by the owner on Apr 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 131
/
package.json
81 lines (81 loc) · 2.58 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
{
"name": "trust-ray",
"version": "1.0.0",
"private": true,
"description": "API for Trust Ethereum Wallet",
"author": "Philipp Rieger",
"scripts": {
"start": "cross-env NODE_ENV=development npm run watch-ts && npm run tslint",
"build": "tsc",
"watch-ts": "tsc-watch --onSuccess \"nodemon dist/Server.js\"",
"test": "cross-env NODE_ENV=test mocha --recursive --require ts-node/register 'test/**/*.test.ts' --exit",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"tslint-fix": "tslint -c tslint.json -p tsconfig.json --fix",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/Server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"engines": {
"node": "9.5.0",
"npm": "5.6.0"
},
"dependencies": {
"@shackpank/node-pushnotifications": "^0.1.1",
"abi-decoder": "kolya182/abi-decoder#master",
"aws-sdk": "^2.204.0",
"axios": "^0.17.1",
"bignumber.js": "^7.0.2",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-http": "^3.0.0",
"coinmarketcap-api": "^2.0.0",
"compression": "^1.7.3",
"concurrently": "^3.6.1",
"config": "^2.0.1",
"cors": "^2.8.4",
"errorhandler": "^1.4.3",
"express": "^4.14.0",
"express-flash": "^0.0.2",
"express-session": "^1.14.2",
"express-validator": "^5.1.1",
"firebase-admin": "^5.12.1",
"fs": "0.0.2",
"lodash.flattendeep": "^4.4.0",
"lodash.uniqby": "^4.7.0",
"mocha": "^5.0.0",
"mongoose": "^5.0.0",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.9.0",
"svg2png": "^4.1.1",
"ts-node": "^7.0.0",
"tsc-watch": "^1.0.26",
"tslint": "^5.0.0",
"typescript": "^2.7.2",
"web3": "^1.0.0-beta.24",
"winston": "^2.4.0",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"@types/bluebird": "^3.5.19",
"@types/body-parser": "^1.16.2",
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "^7.1.0",
"@types/config": "0.0.34",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.11.1",
"@types/express-session": "1.15.6",
"@types/jquery": "^3.2.17",
"@types/mocha": "^5.1.0",
"@types/mongodb": "^3.0.1",
"@types/mongoose": "^4.7.24",
"@types/mongoose-paginate": "^5.0.6",
"@types/morgan": "^1.7.35",
"@types/node": "^10.0.7",
"@types/winston": "^2.3.7",
"@types/xss-filters": "0.0.27",
"cross-env": "^5.2.0",
"nodemon": "^1.18.3"
}
}