-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.53 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
{
"name": "tornado-contracts",
"version": "1.0.2",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "MIT",
"scripts": {
"types": "tsc -p tsconfig.types.json --declaration --emitDeclarationOnly",
"compile": "hardhat clean && hardhat compile && hardhat flatten:all",
"build": "yarn compile && yarn types && rollup -c",
"deploy": "hardhat run ./scripts/deploy.ts",
"lint": "eslint scripts/**/*.ts",
"test": "hardhat test"
},
"files": [
"contracts",
"dist",
"scripts",
"typechain-types",
".gitattributes",
".gitignore",
"eslint.config.mjs",
"hardhat.config.ts",
"LICENSE",
"logo.png",
"logo2.png",
"README.md",
"rollup.config.mjs",
"sepolia.json",
"tsconfig.types.json",
"tsconfig.json",
"yarn.lock"
],
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.9",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.9",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.12",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"chai": "^4.5.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"hardhat": "^2.22.17",
"hardhat-gas-reporter": "^2.2.2",
"hardhat-storage-layout": "^0.1.7",
"hardhat-tracer": "^3.1.0",
"prettier": "^3.4.2",
"rollup": "^4.29.1",
"rollup-plugin-esbuild": "^6.1.1",
"solidity-coverage": "^0.8.14",
"ts-node": "^10.9.2",
"tsc": "^2.0.4",
"typechain": "^8.3.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"dependencies": {
"@openzeppelin/contracts": "5.1.0",
"@openzeppelin/contracts-v3": "npm:@openzeppelin/[email protected]",
"ethers": "^6.13.4"
}
}