tornado-contracts/package.json

70 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2024-03-30 00:52:45 +03:00
{
2024-04-20 16:42:07 +03:00
"name": "@tornado/contracts",
2024-10-13 13:25:29 +03:00
"version": "1.0.2",
2024-04-20 16:42:07 +03:00
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
2024-03-30 00:52:45 +03:00
"license": "MIT",
"scripts": {
2024-04-20 16:42:07 +03:00
"types": "tsc -p tsconfig.types.json --declaration --emitDeclarationOnly",
"compile": "hardhat clean && hardhat compile && hardhat flatten:all",
"build": "yarn compile && yarn types && rollup -c",
2024-03-30 09:10:48 +03:00
"deploy": "hardhat run ./scripts/deploy.ts",
2024-10-13 13:25:29 +03:00
"lint": "eslint . --ext .ts --ignore-pattern dist"
2024-03-30 00:52:45 +03:00
},
"files": [
"contracts",
2024-04-20 16:42:07 +03:00
"dist",
2024-03-30 09:10:48 +03:00
"scripts",
2024-04-20 16:42:07 +03:00
"typechain-types",
".eslintrc.js",
".gitignore",
2024-03-30 00:52:45 +03:00
"hardhat.config.ts",
"README.md",
2024-04-20 16:42:07 +03:00
"sepolia.json",
"tsconfig.base.json",
2024-03-30 00:52:45 +03:00
"tsconfig.json",
"yarn.lock"
],
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
2024-10-16 10:16:43 +03:00
"@nomicfoundation/hardhat-ignition": "^0.15.6",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
2024-10-13 13:25:29 +03:00
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.5",
2024-10-16 10:16:43 +03:00
"@nomicfoundation/ignition-core": "^0.15.6",
"@rollup/plugin-commonjs": "^28.0.1",
2024-10-13 13:25:29 +03:00
"@rollup/plugin-node-resolve": "^15.3.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
2024-10-13 13:25:29 +03:00
"@types/chai": "^4.3.20",
"@types/mocha": "^9.1.1",
2024-10-13 13:25:29 +03:00
"@types/node": "^22.7.5",
2024-10-16 10:16:43 +03:00
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"chai": "^4.4.1",
2024-10-13 13:25:29 +03:00
"esbuild": "^0.24.0",
"eslint": "8.57.0",
"hardhat": "^2.22.13",
"hardhat-gas-reporter": "^2.2.1",
2024-03-30 00:52:45 +03:00
"hardhat-storage-layout": "^0.1.7",
2024-10-13 13:25:29 +03:00
"hardhat-tracer": "^3.1.0",
"rollup": "^4.24.0",
2024-04-20 16:42:07 +03:00
"rollup-plugin-esbuild": "^6.1.1",
"solidity-coverage": "^0.8.11",
2024-03-30 00:52:45 +03:00
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
2024-10-13 13:25:29 +03:00
"typescript": "^5.6.3"
2024-03-30 00:52:45 +03:00
},
"dependencies": {
"@openzeppelin/contracts": "5.0.2",
2024-10-13 13:25:29 +03:00
"@openzeppelin/contracts-v3": "npm:@openzeppelin/contracts@3.2.0-rc.0",
"ethers": "^6.13.4"
},
"resolutions": {
"strip-ansi": "6.0.1"
2024-03-30 00:52:45 +03:00
}
}