forked from RequestNetwork/requestNetwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.2 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": "@requestnetwork/request-node",
"version": "0.5.5",
"publishConfig": {
"access": "public"
},
"description": "Basic node for request network v2.",
"keywords": [
"requestnetwork",
"request-node"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/request-node",
"bugs": {
"url": "https://github.com/RequestNetwork/requestNetwork/issues"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"main": "dist/server",
"bin": {
"request-node": "dist/server.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -b",
"build:watch": "tsc -b --watch",
"test": "nyc mocha --timeout=10000 --exit --require ts-node/register --require source-map-support/register test/**/*.ts",
"test:watch": "nyc mocha --watch --watch-extensions ts --timeout=10000 --exit --require ts-node/register --require source-map-support/register test/**/*.ts",
"start": "ts-node src/server.ts",
"start:watch": "ts-node-dev src/server.ts",
"clean": "shx rm -rf dist",
"lint-staged": "lint-staged",
"lint": "tslint --project .",
"init-ipfs": "node init-ipfs.js"
},
"dependencies": {
"@requestnetwork/data-access": "0.5.3",
"@requestnetwork/ethereum-storage": "0.4.6",
"@requestnetwork/types": "0.9.1",
"@requestnetwork/utils": "0.8.0",
"@truffle/hdwallet-provider": "1.0.18",
"chalk": "2.4.2",
"cors": "2.8.5",
"dotenv": "8.0.0",
"express": "4.17.1",
"http-status-codes": "1.3.0",
"keyv-file": "0.1.13",
"shelljs": "0.8.3",
"yargs": "12.0.5"
},
"devDependencies": {
"@types/cors": "2.8.6",
"@types/express": "4.16.1",
"@types/supertest": "2.0.7",
"@types/yargs": "12.0.8",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"lint-staged": "8.1.3",
"mocha": "5.2.0",
"prettier": "1.16.4",
"shx": "0.3.2",
"source-map-support": "0.5.13",
"supertest": "3.4.2",
"ts-node": "8.5.2",
"ts-node-dev": "1.0.0-pre.39",
"tslint": "5.12.1",
"typescript": "3.7.2"
},
"gitHead": "6155223cfce769e48ccae480c510b35b4f54b4d0"
}