-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.77 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
{
"name": "orochi-smart-contract",
"version": "1.0.0",
"description": "Orochi Network smart contract",
"main": "index.js",
"repository": "https://github.com/orochi-network/orochi-smart-contract.git",
"author": "Chiro Hiro <chiro8x@gmail.com>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build": "hardhat compile",
"release": "yarn build && yarn flatten",
"coverage": "hardhat compile && hardhat coverage",
"node:local": "hardhat node",
"test": "hardhat test",
"deploy:local": "hardhat --network local deploy",
"deploy:testnet": "hardhat --network testnet deploy",
"deploy:fantom": "hardhat --network fantom deploy",
"flatten": "waffle flatten && node ./clean.js"
},
"devDependencies": {
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.18",
"@types/mocha": "^10.0.1",
"@types/node": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"ethereum-waffle": "^3.4.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"ts-node": "^10.9.1",
"typechain": "^4.0.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@openzeppelin/contracts": "^4.1.0",
"@typechain/ethers-v5": "^7.0.0",
"bignumber.js": "^9.0.1",
"csv-parse": "^4.16.3",
"dotenv": "^9.0.2",
"ethers": "^5.4.5",
"hardhat": "^2.3.0",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"js-sha3": "^0.8.0",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"typechain-target-ethers-v5": "^5.0.1"
}
}