This repository has been archived by the owner on Jul 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
103 lines (103 loc) · 3.01 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
95
96
97
98
99
100
101
102
103
{
"version": "0.4.1",
"description": "Tabookey Gasless Relay Framework",
"name": "tabookey-gasless",
"license": "MIT",
"repository": {
"url": "https://github.com/tabookey-dev/tabookey-gasless",
"type": "git"
},
"contributors": [
{
"name": "Dror Tirosh",
"email": "[email protected]"
},
{
"name": "Yoav Weiss",
"email": "[email protected]"
},
{
"name": "Shahaf Nacson",
"email": "[email protected]"
},
{
"name": "Alex Forshtat",
"email": "[email protected]"
}
],
"bin": {
"gsn-stat": "./scripts/gsn-stat.js",
"gsn-dock-relay": "./scripts/gsn-dock-relay",
"gsn-dock-relay-ganache": "./scripts/gsn-dock-relay-ganache"
},
"scripts": {
"test": "npm run test-server && npm run test-js",
"test-server": "make test-server",
"test-js": "run-with-testrpc --port 8544 --gasLimit 8000000 --defaultBalanceEther 1000 --deterministic 'npx truffle --network npmtest test'",
"webtools-pack": "webpack-cli --config ./webtools.webpack.js",
"webtools": "webpack-cli --config ./webtools.webpack.js && http-server webtools/ -o",
"lint": "eslint ./src ./test -f unix",
"gsn-dock-relay": "./scripts/gsn-dock-relay",
"gsn-dock-relay-ganache": "./scripts/gsn-dock-relay-ganache",
"web": "./restart-relay.sh web",
"trace": "MODE=trace truffle test",
"coverage": "./scripts/run-coverage",
"clean-coverage": "shx rm -rf coverage coverage.json",
"coverage-if-changed": "./scripts/run-coverage-if-changed.sh npm run coverage"
},
"dependencies": {
"@0x/contracts-utils": "3.1.1",
"abi-decoder": "^1.2.0",
"axios": "^0.18.0",
"big-js": "^3.1.3",
"big.js": "^5.2.2",
"eth-crypto": "^1.2.7",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^6.0.0",
"ethereumjs-wallet": "^0.6.3",
"openzeppelin-solidity": "^2.3.0",
"request-promise": "^4.2.2",
"web3": "1.0.0-beta.37",
"web3-utils": "1.0.0-beta.37",
"webpack-bundle-analyzer": ">=3.3.2"
},
"devDependencies": {
"@0x/sol-compiler": "^3.1.8",
"@0x/sol-coverage": "^3.0.5",
"@0x/sol-profiler": "^3.1.7",
"@0x/sol-trace": "^2.0.13",
"@0x/subproviders": "^4.1.0",
"browser-request": "^0.3.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.12.1",
"ganache-cli": "^6.4.3",
"http-server": "^0.11.1",
"istanbul": "^0.4.5",
"lodash": "~>4.17.13",
"openzeppelin-test-helpers": "^0.4.0",
"opn-cli": "^4.0.0",
"promisify": "0.0.3",
"rlp": "^2.2.3",
"run-with-testrpc": "^0.3.0",
"shx": "^0.3.2",
"solc": "0.5.10",
"tar": ">=4.4.2",
"truffle": "^5.0.21",
"truffle-contract": "^4.0.2",
"truffle-flattener": "^1.3.0",
"truffle-hdwallet-provider": "^1.0.1",
"web3-provider-engine": "^14.1.0",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6"
},
"files": [
"src/",
"contracts/",
"webtools/",
"samples/",
"scripts/gsn*",
"webtools.webpack.js"
],
"main": "src/js/relayclient/index.js"
}