-
Notifications
You must be signed in to change notification settings - Fork 230
/
package.json
43 lines (43 loc) · 1.38 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
{
"name": "@zetachain/zeta-app-contracts",
"version": "0.0.6",
"license": "MIT",
"author": "zetachain",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"contracts",
"data",
"lib",
"scripts",
"typechain-types"
],
"scripts": {
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"prepublishOnly": "echo 'This package has no prepublishOnly tasks.'",
"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": {
"@defi-wonderland/smock": "^2.3.4",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.7.20",
"tsconfig-paths": "^3.14.1"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"@zetachain/networks": "^4.0.0",
"@zetachain/protocol-contracts": "^4.0.1",
"ethers": "5.6.8"
}
}