-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 2.24 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
{
"name": "masa-zksbt",
"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",
"run:node": "hardhat node",
"test": "hardhat test",
"prettier": "prettier --write 'contracts/**/*.sol' '**/*.ts'",
"solhint": "solhint contracts/**/*.sol"
},
"dependencies": {
"ethers": "~5.7.2"
},
"devDependencies": {
"@masa-finance/masa-contracts-identity": "^1.12.0",
"@masa-finance/masa-sdk": "^4.2.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-solhint": "^4.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.9.3",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.10",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.4",
"@types/node": "^22.0.0",
"@types/sinon-chai": "^3.2.12",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chai-ethers": "^0.0.1",
"circomlib": "^2.0.5",
"circomlibjs": "^0.1.7",
"ecies-geth": "^1.7.0",
"envfile": "^7.0.0",
"eth-crypto": "^2.6.0",
"ethereum-public-key-to-address": "^0.0.5",
"ethereum-waffle": "^4.0.10",
"ethereumjs-util": "^7.1.5",
"hardhat": "^2.19.0",
"hardhat-deploy": "^0.12.1",
"hardhat-deploy-ethers": "^0.4.0-next.1",
"hardhat-gas-reporter": "^2.0.2",
"hardhat-waffle": "^0.0.1-security",
"poseidon-lite": "^0.3.0",
"prettier": "^3.1.0",
"prettier-plugin-solidity": "^1.2.0",
"snarkjs": "^0.7.2",
"solhint": "^5.0.1",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typescript": "^5.3.2"
}
}