forked from taikoxyz/taiko-mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.92 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
82
{
"name": "@taiko/protocol",
"version": "0.14.0",
"private": true,
"scripts": {
"clean": "rm -rf abis cache && forge clean",
"compile": "forge build",
"compile:hardhat": "pnpm hardhat compile",
"deploy:foundry": "./script/download_solc.sh && ./script/test_deploy_on_l1.sh",
"eslint": "pnpm exec eslint --ignore-path .eslintignore --ext .js,.ts .",
"eslint:fix": "pnpm exec eslint --ignore-path .eslintignore --ext .js,.ts . --fix",
"export:abi": "pnpm hardhat clear-abi && pnpm hardhat export-abi",
"export:docs": "pnpm hardhat docgen && pnpm prettier --write ../website/pages/docs/reference/contract-documentation/**/*.md",
"fmt:sol": "forge fmt",
"generate:genesis": "ts-node ./utils/generate_genesis/main.ts",
"lint:sol": "forge fmt && pnpm solhint 'contracts/**/*.sol' --fix",
"sizer": "pnpm hardhat size-contracts",
"snapshot": "forge snapshot --match-path 'test/**/*.t.sol'",
"test": "forge test -vvv --gas-report --fuzz-seed $(date +%s) --nmp test/L1/TaikoL1.sim.sol",
"test:coverage": "forge coverage --report lcov",
"test:genesis": "./genesis/generate_genesis.test.sh",
"upgrade": "./script/upgrade_to.sh"
},
"keywords": [
"ZKP",
"Zero-Knowledge Proof",
"Decentralized",
"Permissionless",
"Type-1",
"ZK-EVM",
"zkRollup",
"Ethereum",
"Layer2"
],
"author": "Taiko Labs",
"license": "MIT",
"devDependencies": {
"@defi-wonderland/smock": "^2.3.4",
"@foundry-rs/hardhat-forge": "^0.1.17",
"@nomicfoundation/hardhat-foundry": "^1.0.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"@types/chai": "^4.3.4",
"@types/glob": "^8.1.0",
"@types/mocha": "^9.1.1",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.7",
"chalk": "4.1.2",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^6.1.1",
"ethers": "^5.7.2",
"glob": "^8.1.0",
"hardhat": "^2.14.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-preprocessor": "^0.1.5",
"merkle-patricia-tree": "^4.2.4",
"prettier": "^2.8.8",
"rlp": "^3.0.0",
"solhint": "^3.4.1",
"solidity-coverage": "github:taikoxyz/solidity-coverage",
"solidity-docgen": "0.6.0-beta.35",
"ts-node": "^10.9.1",
"typechain": "^5.2.0",
"typescript": "^4.9.5"
}
}