forked from iden3/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.93 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
59
60
61
62
63
64
65
{
"name": "contracts",
"version": "0.1.1",
"description": "Iden3 smartcontracts",
"repository": {
"type": "git",
"url": "https://github.com/iden3/contracts.git"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/iden3/contracts/issues"
},
"homepage": "https://github.com/iden3/contracts",
"devDependencies": {
"@iden3/js-crypto": "^1.1.0",
"@iden3/js-iden3-core": "^1.3.1",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.0.5",
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.6",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"circomlibjs": "^0.1.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"hardhat": "^2.22.2",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.1.1",
"solhint": "4.1.1",
"solhint-plugin-prettier": "^0.1.0",
"solidity-bytes-utils": "^0.8.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
},
"scripts": {
"node:local": "npx hardhat node",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"test:gas": "COINMARKETCAP_KEY=<put your key here> REPORT_GAS=true npx hardhat test",
"test:coverage": "npx hardhat coverage",
"deploy:state:localhost": "npx hardhat run scripts/deployState.ts --network localhost",
"deploy:state:ropsten": "npx hardhat run scripts/deployState.ts --network ropsten",
"deploy:identitytreestore:localhost": "npx hardhat run scripts/deployIdentityTreeStore.ts --network localhost",
"deploy:universalverifier:localhost": "npx hardhat run scripts/deployUniversalVerifier.ts --network localhost",
"verify:polygon": "npx hardhat run scripts/verifyEtherescan.js --network polygon",
"lint:contracts": "npx solhint contracts/**/*.sol",
"prettier:contracts": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"upgrade:contracts:its:amoy": "npx hardhat run scripts/upgrade/identitytreestore/identitytreestore-upgrade.ts --network amoy",
"upgrade:contracts:state:amoy": "npx hardhat run scripts/upgrade/state/state-upgrade.ts --network amoy",
"upgrade:contracts:its:polygon": "npx hardhat run scripts/upgrade/identitytreestore/identitytreestore-upgrade.ts --network polygon",
"upgrade:contracts:state:polygon": "npx hardhat run scripts/upgrade/state/state-upgrade.ts --network polygon",
"deploy:state:amoy": "npx hardhat run scripts/deployState.ts --network amoy",
"deploy:its:amoy": "npx hardhat run scripts/deployIdentityTreeStore.ts --network amoy",
"slither": "slither ."
}
}