-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 2.12 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
{
"name": "fiotest",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@fioprotocol/fiosdk": "github:fioprotocol/fiosdk_typescript#release/1.8.x",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"child_process": "",
"ethereumjs-tx": "^2.1.2",
"ethers": "^5.3.0",
"fs": "0.0.1-security",
"hardhat": "^2.3.0",
"lossless-json": "1.0.5",
"mathjs": "^9.4.4",
"process": "^0.11.10",
"request": "^2.34.0",
"request-promise": "",
"semver": "^7.1.1",
"submodules": "^3.0.0",
"web3": "^1.3.4"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.20.52",
"chai": "^4.2.0",
"jest": "^26.0.1",
"jest-fetch-mock": "^2.1.2",
"mocha": "^6.2.2",
"node-fetch": "^2.6.0",
"text-encoding": "^0.7.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.15.0",
"typescript": "^3.8.2"
},
"scripts": {
"test": "node node_modules/mocha/bin/_mocha -t 5000000 index.js",
"testnet": "mocha -t 5000000 tests/testnet-smoketest.js",
"hardhat-contract-dir": "mkdir -p hardhat-contracts/",
"hardhat-copy-erc20": "cp -R ../fio.erc20/contracts/wfio.sol hardhat-contracts/",
"hardhat-copy-erc721": "cp -R ../fio.erc721/contracts/fionft.sol hardhat-contracts/",
"hardhat-compile": "npx hardhat compile",
"hardhat-init": "npm run hardhat-contract-dir && npm run hardhat-copy-erc20 && npm run hardhat-copy-erc721 && npm run hardhat-compile",
"hardhat-erc20-test": "mocha -t 5000000 tests/fio-erc20.js",
"hardhat-erc721-test": "mocha -t 5000000 tests/fio-erc721.js",
"hardhat-contracts-test": "npm run hardhat-erc20-test && npm run hardhat-erc721-test",
"hardhat-bootstrap": "npm install && npm update && npm run hardhat-init"
}
}