-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.84 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
{
"name": "game-contracts",
"private": true,
"license": "TBD",
"scripts": {
"prepare": "bash ./scripts/pnm-test-setup.sh",
"contract-size": "yarn run hardhat size-contracts",
"getInitParams": "npx ts-node test/util/foundry/getInitParams.ts",
"getFuncSelectors": "npx ts-node test/util/foundry/getFuncSelectors.ts",
"forge-test": "forge test --ffi -vv",
"ft": "forge test --ffi -vv",
"deploy": "npx hardhat deploy --network localhost",
"port": "npx hardhat port",
"kill": "lsof -ti:8545 | xargs kill",
"setup": "yarn link curio-vault",
"deploy:anvil": "bash ./scripts/deploy.sh",
"compile": "npx hardhat compile",
"clean-git-cache": "git rm -r --cached ."
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.5",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"hardhat-contract-sizer": "^2.4.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.178",
"axios": "^0.26.1",
"bignumber.js": "^9.0.1",
"chalk": "4.1.0",
"curio-vault": "github:curio-research/treaty-vault",
"dotenv": "^16.0.0",
"eth-heap": "^2.2.0",
"ethers": "^5.7.1",
"fs-extra": "^10.1.0",
"hardhat": "^2.11.2",
"hardhat-diamond-abi": "^2.0.0",
"hardhat-preprocessor": "^0.1.4",
"lodash": "^4.17.21",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"random-words": "^1.2.0",
"rot-js": "^2.2.0",
"simplex-noise": "^3.0.1",
"typechain": "^8.1.0"
}
}