-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.51 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
{
"name": "ragnar",
"version": "1.0.0",
"scripts": {
"abi": "hardhat export-abi",
"clean": "hardhat clean",
"compile": "hardhat compile",
"deploy:local": "hardhat run --network localhost scripts/deploy-local.ts",
"deploy:arb-sepolia": "hardhat run --network sepolia scripts/deploy-arb-sepolia.ts",
"deploy:production-arb": "hardhat run --network arbitrum scripts/deploy-production.ts",
"node": "hardhat node",
"fullflow:local": "hardhat run --network localhost test/integ/FullFlow.ts",
"maintainerclaim:local": "hardhat run --network localhost test/integ/MaintainerClaim.ts",
"postbounty:local": "hardhat run --network localhost test/integ/PostBounty.ts",
"postbounty:arb-sepolia": "hardhat run --network sepolia test/integ/PostBounty-Arb-Sepolia.ts",
"test": "hardhat test test/validators/*.ts test/*.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nibbstack/erc721-validator": "^0.3.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.2",
"chai": "^4.3.8",
"dotenv": "^16.3.1",
"hardhat": "^2.19.1",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-gas-reporter": "^1.0.9",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.2.2",
"web3": "^1.5.2"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0"
}
}