forked from masa-finance/masa-zkSBT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.5 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
80
81
{
"name": "masa-sbt-zkp",
"version": "1.0.0",
"main": "dist/typechain/index.js",
"types": "dist/typechain/index.d.ts",
"files": [
"contracts/**/*",
"deployments/**/*",
"dist/**/*",
"hardhat.config.ts",
"tsconfig.json"
],
"author": "Masa Finance",
"license": "MIT",
"scripts": {
"compile": "hardhat compile",
"tsc": "tsc -p . && cp typechain/*.d.ts dist/typechain/",
"build": "yarn compile && yarn tsc",
"clean": "hardhat clean",
"coverage": "hardhat coverage",
"docgen": "hardhat dodoc",
"deploy": "hardhat deploy",
"deploy-ksbt": "npx hardhat run deploy/KeykoZKPSBT_v2.ts --network goerli",
"run:node": "hardhat node",
"test": "hardhat test",
"prettier": "prettier --write 'contracts/**/*.sol' '**/*.ts'",
"solhint": "solhint contracts/**/*.sol"
},
"dependencies": {
"@noble/curves": "^1.2.0",
"@noble/secp256k1": "^2.0.0",
"argon2": "^0.31.1",
"elliptic": "^6.5.4",
"ethers": "^6.7.1",
"secp256k1": "^5.0.0"
},
"devDependencies": {
"@masa-finance/masa-contracts-identity": "^1.9.1",
"@masa-finance/masa-sdk": "^3.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.9.3",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.3.6",
"@types/chai-as-promised": "^7.1.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.9",
"@types/sinon-chai": "^3.2.9",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"chai-ethers": "^0.0.1",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"envfile": "^6.18.0",
"eth-crypto": "^2.6.0",
"ethereum-public-key-to-address": "^0.0.5",
"ethereum-waffle": "^4.0.10",
"hardhat": "^2.17.2",
"hardhat-deploy": "^0.11.37",
"hardhat-deploy-ethers": "^0.4.0-next.1",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-waffle": "^0.0.1-security",
"poseidon-lite": "^0.2.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"snarkjs": "^0.7.0",
"solhint": "^3.6.2",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.4",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.2.2"
}
}