-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.1 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
{
"name": "@kosu/network-explorer",
"version": "0.0.0",
"description": "Simple WebSocket and REST server for information about the Kosu network.",
"main": "dist/index.js",
"repository": "https://github.com/ParadigmFoundation/kosu-monorepo/blob/master/packages/network-explorer",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"lint": "tslint -p .",
"lint:fix": "tslint -p . --fix",
"start:redis": "docker run -d --rm -p 6379:6379 --name redis redis",
"start:dev": "node dist/index.js",
"start:production": "NODE_ENV=production node dist/index.js",
"start": "yarn start:redis && yarn start:dev",
"stop:redis": "docker kill redis"
},
"dependencies": {
"0x.js": "^7.0.0",
"@0x/utils": "^4.5.0",
"@kosu/kosu.js": "^0.2.2",
"ioredis": "^4.14.0",
"lodash": "^4.17.15",
"uuid": "^3.3.3",
"web3": "^1.2.1",
"ws": "^7.1.2"
},
"devDependencies": {
"@types/ws": "^6.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}