-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.41 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.41 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
63
64
65
66
67
68
69
70
{
"name": "forgotten-runes-game",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "hardhat clean && hardhat compile",
"test": "MAINNET_ALCHEMY_ENABLED=false hardhat test",
"clean": "hardhat clean",
"run": "hardhat run",
"deploy": "hardhat run ./scripts/deploy_sender.ts && hardhat run ./scripts/deploy_receiver.ts ",
"compile-and-test": "yarn run compile && hardhat test",
"coverage": "MAINNET_ALCHEMY_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": {
"@connext/nxtp-contracts": "^0.2.0-beta.17",
"@connext/nxtp-sdk": "^0.2.0-beta.17",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@rari-capital/solmate": "^6.2.0",
"crypto-js": "^4.1.1",
"hardhat-change-network": "^0.0.7",
"hardhat-contract-sizer": "^2.0.3",
"keccak256": "^1.0.3",
"merkletreejs": "^0.2.32",
"update": "^0.7.4",
"layer-zero": "https://github.com/LayerZero-Labs/solidity-examples.git"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.6.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"
}
}