-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
68 lines (68 loc) · 2.38 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
66
67
68
{
"name": "hydra-s1-zkps",
"version": "1.0.0",
"description": "Hydra S1 ZK Proving Scheme",
"main": "index.js",
"author": "Sismo core",
"license": "MIT",
"private": true,
"scripts": {
"prepare": "husky install && cd ./package && yarn",
"build": "yarn clean && yarn install && yarn compile-circuits && yarn generate-contract && yarn compile-contracts && cd package && yarn && yarn build",
"generate-contract": "./scripts/generate-contract.sh hydra-s1",
"compile-circuits": "./scripts/compile-circuit.sh hydra-s1",
"compile-contracts": "SKIP_LOAD=true hardhat compile",
"test": "hardhat test",
"test:circuits": "hardhat test ./test/circuits.test",
"test:verifier-js": "hardhat test ./test/verifier.test",
"test:verifier-contract": "hardhat test ./test/verifier-contract.test",
"test:prover-js": "hardhat test ./test/prover.test",
"clean": "./scripts/clean.sh",
"prettier": "prettier --write packages/**/*.ts test/**/*.ts tasks/**/*.ts",
"lint": "eslint packages/**/*.ts test/**/*.ts --max-warnings=0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@rollup/plugin-replace": "^4.0.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"chai": "^4.3.6",
"circom_tester": "^0.0.17",
"circomlib": "^2.0.5",
"dotenv": "^16.0.0",
"eslint": "^8.14.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.4",
"hardhat": "^2.9.3",
"hardhat-deploy": "^0.11.4",
"hardhat-gas-reporter": "^1.0.8",
"husky": ">=6",
"lint-staged": ">=10",
"mocha": "^9.2.2",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"semantic-release-monorepo": "^7.0.5",
"solidity-coverage": "^0.7.20",
"ts-node": "^10.7.0",
"typechain": "^8.0.0",
"typescript": "^4.6.3"
},
"engines": {
"npm": "NPM IS NOT USED - use yarn instead."
},
"lint-staged": {
"src/**/*": "prettier --write packages/**/*.ts test/**/*.ts tasks/**/*.ts",
"src/**/*.{ts,tsx,js,jsx}": [
"eslint packages/**/*.ts test/**/*.ts --max-warnings=0"
]
},
"dependencies": {
"@sismo-core/commitment-mapper-tester-js": "^1.0.10"
}
}