This repository was archived by the owner on Nov 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.54 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.54 KB
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
{
"name": "augur-matic",
"version": "1.0.0",
"main": "index.js",
"author": "atvanguard <93arpit@gmail.com>",
"license": "MIT",
"scripts": {
"install": "npx buidler install",
"build": "yarn compile && yarn typechain",
"typechain": "npx buidler typechain",
"compile": "npx buidler compile && yarn typechain",
"migrate:local": "truffle migrate --reset --network development",
"test": "npx mocha -r ts-node/register -r tsconfig-paths/register -r source-map-support/register -r mocha-steps -b -t 0 --watch-extensions ts \"test/**/*.ts\"",
"test:truffle": "npx buidler test --network localhost",
"testrpc:main": "ganache-cli --account '0xfae42052f82bed612a724fec3632f325f377120592c75bb78adfcceae6470c5a,1000000000000000000000000' --account '0x48c5da6dff330a9829d843ea90c2629e8134635a294c7e62ad4466eb2ae03712,1000000000000000000000000' --gasLimit 10000000 --gasPrice 0 --port 8545",
"testrpc:bor": "ganache-cli --account '0xfae42052f82bed612a724fec3632f325f377120592c75bb78adfcceae6470c5a,1000000000000000000000000' --account '0x48c5da6dff330a9829d843ea90c2629e8134635a294c7e62ad4466eb2ae03712,1000000000000000000000000' --gasLimit 10000000 --gasPrice 0 --port 9545 --networkId 15001"
},
"dependencies": {
"@nomiclabs/buidler": "^1.4.5",
"@openzeppelin/contracts": "^2.4.0",
"@typechain/ethers-v5": "^1.0.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.4",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-tx": "1.3.7",
"ethereumjs-util": "^6.2.0",
"ethereumjs-wallet": "^1.0.0",
"ethers": "^5.0.0",
"ganache-cli": "^6.9.1",
"merkle-patricia-tree": "2.3.2",
"mocha": "^6.2.2",
"mocha-steps": "^1.3.0",
"rlp": "2.2.3",
"safe-buffer": "^5.2.1",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typechain": "^2.0.0",
"typescript": "^4.0.2",
"web3": "^1.3.0",
"web3-eth-abi": "^1.2.11",
"openzeppelin-solidity": "2.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"postinstall": "yarn typechain"
}