-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.01 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
{
"name": "Fismology",
"version": "0.1.1",
"description": "Building with the Fismo SDK",
"author": "Cliff Hall <[email protected]> (https://twitter.com/seaofarrows)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/cliffhall/Fismology.git"
},
"bugs": {
"url": "https://github.com/cliffhall/Fismology/issues"
},
"homepage": "https://github.com/cliffhall/Fismology",
"keywords": [
"blockchain",
"ethereum",
"fismo",
"solidity",
"fsm",
"finite state machine",
"state machine",
"fismo"
],
"scripts": {
"build:contracts": "npx hardhat compile",
"clone:fismo:poly:test": "npx hardhat run --network poly-test scripts/deploy/clone-fismo.js >> logs/clone.poly.test.txt",
"clone:fismo:poly:main": "npx hardhat run --network poly-main scripts/deploy/clone-fismo.js >> logs/clone.poly.main.txt",
"clone:fismo:eth:main": "npx hardhat run --network eth-main scripts/deploy/clone-fismo.js >> logs/clone.eth.main.txt",
"deploy:labs:local": "npx hardhat run --network hardhat scripts/deploy/deploy-experiments.js",
"deploy:labs:poly:test": "npx hardhat run --network poly-test scripts/deploy/deploy-experiments.js >> logs/deploy.poly.test.txt",
"deploy:labs:poly:main": "npx hardhat run --network poly-main scripts/deploy/deploy-experiments.js >> logs/deploy.poly.main.txt",
"deploy:labs:eth:main": "npx hardhat run --network eth-main scripts/deploy/deploy-experiments.js >> logs/deploy.eth.main.txt"
},
"dependencies": {
"@metamask/onboarding": "^1.0.1",
"fismo": "^0.7.2",
"nft.storage": "^7.1.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.4.2",
"eip55": "^2.1.0",
"ethers": "^5.7.2",
"hardhat": "^2.20.0",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.10",
"solhint": "^4.1.1",
"solidity-coverage": "^0.8.7"
}
}