-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 2.16 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
{
"name": "forgotten-runes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "hardhat clean && hardhat compile",
"test": "FORKING_ENABLED=false hardhat test",
"clean": "hardhat clean",
"run": "hardhat run",
"deploy": "hardhat run ./scripts/run_deploy.ts",
"decode": "hardhat run ./scripts/decoder/decode.ts",
"compile-and-test": "yarn run compile && hardhat test",
"coverage": "FORKING_ENABLED=false hardhat coverage --temp artifacts ",
"lint": "yarn run lint:ts && npm run lint:sol",
"lint:fix": "yarn run lint:ts:fix",
"lint:ts": "eslint . --ext .ts",
"lint:ts:fix": "eslint . --ext .ts --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\""
},
"author": "Mephistopheles",
"license": "Apache-2",
"dependencies": {
"crypto-js": "^4.1.1",
"hardhat-contract-sizer": "^2.0.3",
"keccak256": "^1.0.3",
"merkletreejs": "^0.2.24",
"bson": "^4.4.0",
"ora": "^5.3.0",
"parse-numeric-range": "^1.2.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.3.0",
"@typechain/ethers-v5": "^2.0.0",
"@typechain/hardhat": "^1.0.1",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"chai": "^4.2.0",
"chai-bignumber": "^3.0.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereum-waffle": "^3.1.0",
"ethereumjs-util": "^6.2.0",
"ethers": "^5.0.9",
"hardhat": "^2.2.1",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-gas-reporter": "^1.0.4",
"solhint": "^3.2.0",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^9.0.0",
"typechain": "^4.0.3",
"typescript": "^4.0.5"
}
}