generated from exp-table/nplate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.89 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
{
"name": "BattleZips-Noir",
"version": "1.0.0",
"description": "Noir implementation of BattleZips.",
"main": "index.ts",
"scripts": {
"deploy": "hardhat run scripts/deploy.ts --network goerli",
"generate-contracts": "hardhat run scripts/generateContracts.ts",
"generate-frontend-files": "ts-node scripts/generateFrontendData.ts",
"generate-witnesses": "ts-node scripts/generateBoardWitness.ts && ts-node scripts/generateShotWitness.ts",
"test-circuit": "hardhat test test/circuit.ts",
"test-circuit:goerli": "hardhat test test/circuit.ts --network goerli",
"test-game": "hardhat test test/game.ts",
"test-game:goerli": "hardhat test test/game.ts --network goerli",
"verify": "hardhat run scripts/verify.ts --network goerli"
},
"author": "Mach 34 <[email protected]> (https://mach34.space/)",
"license": "ISC",
"devDependencies": {
"@ethersproject/abi": "^5.4.7",
"@ethersproject/providers": "^5.4.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.0",
"@types/mocha": "^9.1.0",
"@types/node": ">=12.0.0",
"chai": "^4.2.0",
"ethers": "^5.4.7",
"hardhat": "^2.11.1",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.7.21",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": ">=4.5.0"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@noir-lang/aztec_backend": "^0.11.0",
"@noir-lang/barretenberg": "^2.19.0",
"@noir-lang/noir_wasm": "^0.10.0",
"@openzeppelin/contracts": "^4.8.0",
"dotenv": "^16.0.3",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"ipfs-http-client": "^59.0.0"
}
}