-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
79 lines (79 loc) · 2.79 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "protocol-solidity",
"repository": "git://github.com/webb-tools/protocol-solidity.git",
"author": "Webb Developers <[email protected]>",
"license": "(MIT OR Apache-2.0)",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@openzeppelin/**"
]
},
"engines": {
"node": "18.x.x"
},
"scripts": {
"compile": "lerna run compile --scope=@webb-tools/contracts",
"build": "yarn compile && yarn build:packages",
"setup": "yarn compile && yarn build:circuits && yarn build:ptau",
"test": "lerna run test",
"fast": "yarn workspace @webb-tools/contracts run test:parallel",
"build:circuits": "./scripts/bash/build_circuits.sh",
"build:packages": "lerna run build",
"build:ptau": "./scripts/bash/generate_phase1_ptau.sh",
"clean": "rm -rf artifacts typechain-types && yarn clean:packages",
"clean:packages": "lerna run clean",
"fetch:fixtures": "cd solidity-fixtures && dvc pull && cd ../",
"prettier": "prettier -c .",
"publish:packages": "lerna run compile && lerna publish",
"publish:ci": "lerna run compile && lerna publish patch --yes --message 'chore: release new versions' ",
"setup:groth16:vanchor2": "./scripts/bash/groth16/vanchor/phase2_poseidon_vanchor2.sh",
"setup:groth16:vanchor8": "./scripts/bash/groth16/vanchor/phase2_poseidon_vanchor8.sh",
"setup:plonk:vanchor2": "./scripts/bash/plonk/vanchor/phase2_poseidon_vanchor2.sh",
"setup:plonk:vanchor8": "./scripts/bash/plonk/vanchor/phase2_poseidon_vanchor8.sh",
"ts-check": "tsc --noEmit -p ./tsconfig.json",
"format": "prettier -w ."
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.8.3",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@webb-tools/test-utils": "0.1.4-126",
"chai": "^4.3.7",
"circomlibjs": "^0.0.8",
"copyfiles": "^2.4.1",
"dotenv": "^16.0.3",
"elliptic": "^6.5.4",
"ethers": "^5.7.0",
"hardhat": "^2.14.0",
"hardhat-artifactor": "^0.2.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-preprocessor": "^0.1.5",
"itertools": "^2.1.1",
"lerna": "^6.6.1",
"mocha": "^10.2.0",
"nx": "^15.9.2",
"prettier-plugin-solidity": "^1.1.3",
"rimraf": "^5.0.0",
"snarkjs": "^0.7.2",
"solidity-coverage": "^0.8.2",
"tomlify-j0.4": "^3.0.0",
"truffle-assertions": "^0.9.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1"
},
"dependencies": {
"circomlib": "^2.0.5",
"typescript": "^5.0.4"
}
}