-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathpackage.json
44 lines (44 loc) · 1.67 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
{
"name": "@zetachain/zevm-app-contracts",
"version": "0.0.8",
"license": "MIT",
"author": "zetachain",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"contracts",
"data",
"scripts",
"typechain-types"
],
"scripts": {
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"multi-chain-swap:deploy-local": "ZETA_NETWORK=troy EXECUTE_PROGRAMMATICALLY=true npx hardhat run scripts/multi-chain-swap/deploy.ts --network hardhat",
"multi-chain-swap:deploy": "ZETA_NETWORK=athens EXECUTE_PROGRAMMATICALLY=true npx hardhat run scripts/multi-chain-swap/deploy.ts",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js:fix": "eslint --ext .js,.ts . --fix",
"lint:js": "eslint --ext .js,.ts .",
"lint:sol:fix": "prettier --write \"contracts/**/*.sol\"",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
"lint": "npm run lint:js && npm run lint:sol",
"test:watch": "echo You need to install `entr` to run this command && find contracts/**/** lib/**/** test/**/** -iname '*.sol' -o -iname '*.ts' | entr -cnr npx hardhat test",
"test": "npx hardhat test",
"tsc:watch": "npx tsc --watch"
},
"devDependencies": {
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.7.20",
"tsconfig-paths": "^3.14.1"
},
"dependencies": {
"@openzeppelin/contracts": "4.9.3",
"@openzeppelin/contracts-upgradeable": "4.9.3",
"@openzeppelin/hardhat-upgrades": "^1.7.0-rc.0",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"@zetachain/networks": "^4.0.0",
"@zetachain/protocol-contracts": "^4.0.1"
}
}