-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·90 lines (90 loc) · 3.69 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
83
84
85
86
87
88
89
90
{
"name": "phoenix",
"version": "4.15.0",
"description": "A proof-of-stake contract for minting sidechain blocks.",
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"scripts": {
"clear": "rm -rf ./artifacts/ ./artifacts-zk/ ./cache/ ./cache-zk/ ./typechain/ ./foundry/out/ && forge clean && TS_NODE_TRANSPILE_ONLY=1 npx hardhat clean",
"compile": "TS_NODE_TRANSPILE_ONLY=1 hardhat typechain && hardhat compile",
"node": "hardhat node",
"test": "npx hardhat test",
"test:foreign": "CHAIN_ID=8555 npx hardhat test",
"block-listener": "npx hardhat run --network localhost scripts/blockListener.ts",
"deploy:registry": "npx hardhat run scripts/deployRegistry.ts",
"deploy:contracts": "npx hardhat run scripts/deployContracts.ts",
"deploy:chain": "npx hardhat run scripts/deployChain.ts",
"deploy:foreignChain": "npx hardhat run scripts/deployForeignChain.ts",
"deploy:limitedToken": "npx hardhat run scripts/deployLimitedDummyToken.ts",
"deploy:all": "npx hardhat run scripts/deployAll.ts",
"lint": "yarn lint:ts && yarn lint:sol",
"lint:ts": "eslint . --ext .ts,.tsx,.ts --max-warnings=0",
"lint:fix": "eslint . --ext .ts,.tsx,.ts --max-warnings=0 --fix",
"lint:sol": "solhint 'contracts/**/*.sol' --max-warnings=0",
"prettier": "prettier --config .prettierrc 'constants/**/*.ts' 'deploy/**/*.ts' 'scripts/**/*.ts' 'tasks/**/*.ts' 'test/**/*.ts' --check",
"prettier:format": "prettier --config .prettierrc 'constants/**/*.ts' 'deploy/**/*.ts' 'scripts/**/*.ts' 'tasks/**/*.ts' 'test/**/*.ts' --write",
"format": "yarn prettier:format && yarn lint:fix && yarn lint:sol",
"flatten": "sol-merger \"./contracts/**/*.sol\" ./flat_sol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umbrella-network/phoenix.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/umbrella-network/phoenix.git/issues"
},
"homepage": "https://github.com/umbrella-network/phoenix.git#readme",
"devDependencies": {
"@ethereum-waffle/chai": "3.4.4",
"@ethereum-waffle/mock-contract": "3.4.4",
"@ethereum-waffle/provider": "3.4.4",
"@ethersproject/providers": "5.7.2",
"@matterlabs/hardhat-zksync-solc": "1.1.4",
"@matterlabs/hardhat-zksync-verify": "0.5.1",
"@nomicfoundation/hardhat-verify": "2.0.6",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-solhint": "2.0.1",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@openzeppelin/contracts": "4.6.0",
"@openzeppelin/contracts-ethereum-package": "3.0.0",
"@typechain/ethers-v5": "10.1.0",
"@typechain/hardhat": "9.1.0",
"@types/chai": "4.3.11",
"@types/mocha": "10.0.0",
"@types/superagent": "4.1.15",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"@umb-network/toolbox": "5.10.0",
"@uniswap/v3-periphery": "1.4.4",
"abi-decoder": "2.4.0",
"axios": "1.4.0",
"chai": "4.3.6",
"dotenv": "16.0.3",
"eslint": "8.24.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.1",
"ethereum-waffle": "3.4.4",
"ethers": "5.7.2",
"hardhat": "2.22.17",
"hardhat-deploy": "0.12.4",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-gas-reporter": "1.0.9",
"husky": "4.3.0",
"prettier": "3.2.2",
"sol-merger": "4.4.1",
"solc": "0.8.13",
"solhint": "3.4.1",
"solidity-coverage": "0.8.2",
"superagent": "8.0.0",
"ts-node": "10.9.1",
"typechain": "8.1.0",
"typescript": "4.5.4"
},
"peerDependencies": {
"ethers": "^5.7.2"
}
}