-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.64 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.64 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@rarimo/evidence-registry",
"version": "0.3.0",
"license": "CC0-1.0",
"author": "Rarilabs",
"description": "",
"keywords": [
"solidity",
"smart-contracts",
"eip-7812",
"zkp"
],
"files": [
"README.md",
"LICENSE",
"circuits/**/*.circom",
"!circuits/main/**/*",
"contracts/**/*.sol",
"!contracts/mocks/**/*",
"!contracts/verifiers/**/*"
],
"scripts": {
"prepare": "husky",
"compile": "npx hardhat compile",
"coverage": "npx hardhat coverage --solcoverjs ./.solcover.ts",
"clean": "npx hardhat clean",
"prepare-for-tests": "npx hardhat zkit make && npx hardhat zkit verifiers",
"test": "npx hardhat test",
"test-all": "npm run prepare-for-tests && npm run test",
"private-network": "npx hardhat node",
"deploy-sepolia": "npx hardhat migrate --network sepolia --verify",
"deploy-ethereum": "npx hardhat migrate --network ethereum --verify",
"generate-types": "TYPECHAIN_FORCE=true npx hardhat typechain",
"solhint-check": "solhint \"./contracts/**/*.sol\"",
"lint-fix": "npm run lint-sol-fix && npm run lint-ts-fix && npm run lint-json-fix",
"lint-json-fix": "prettier --write \"./**/*.json\"",
"lint-ts-fix": "prettier --write \"./**/*.ts\"",
"lint-sol-fix": "prettier --write \"contracts/**/*.sol\"",
"publish-to-npm": "bash ./scripts/publish.sh --public"
},
"dependencies": {
"@openzeppelin/contracts": "5.1.0",
"@openzeppelin/contracts-upgradeable": "5.1.0",
"@solarity/solidity-lib": "2.7.10",
"circomlib": "2.0.5",
"circomlibjs": "0.1.7"
},
"devDependencies": {
"@iden3/js-crypto": "^1.1.0",
"@iden3/js-merkletree": "^1.3.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@solarity/chai-zkit": "^0.3.3",
"@solarity/hardhat-migrate": "^2.1.11",
"@solarity/hardhat-zkit": "^0.5.16",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.6",
"chai": "^4.5.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.4",
"hardhat": "^2.22.15",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^2.2.1",
"husky": "^9.1.6",
"mocha": "^10.8.2",
"mock-local-storage": "^1.1.24",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.3",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.13",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.3.2",
"typescript": "^5.6.3"
}
}