-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.19 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.19 KB
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
{
"name": "@api3/airnode-protocol",
"license": "MIT",
"version": "0.14.0",
"private": false,
"main": "dist/src/index",
"files": [
"contracts",
"dist"
],
"scripts": {
"build": "yarn run clean && yarn compile",
"clean": "rimraf -g ./src/contracts *.tsbuildinfo ./dist ./build *.tgz && yarn run hardhat clean",
"compile": "yarn run compile:contracts && yarn run compile:tsc",
"compile:contracts": "hardhat compile",
"compile:tsc": "yarn compile:contract-dts && yarn compile:copy-contract-dts && tsc --build tsconfig.json",
"compile:contract-dts": "yarn typechain --target ethers-v5 --out-dir ./src/contracts \"./artifacts/contracts/**/!(*.dbg).json\"",
"compile:copy-contract-dts": "copyfiles -u 1 \"src/contracts/**/*.d.ts\" dist/src",
"deploy:deterministic": "DETERMINISTIC=true hardhat deploy --network $NETWORK --tags deploy && yarn run deploy:generate-references",
"deploy:undeterministic": "hardhat deploy --network $NETWORK --tags deploy && yarn run deploy:generate-references",
"deploy:verify": "hardhat deploy --network $NETWORK --tags verify",
"deploy:generate-references": "hardhat run scripts/generate-references.ts",
"pack": "yarn pack",
"test": "hardhat test --parallel",
"test:verify-local": "hardhat run scripts/verify-local.ts",
"test:verify-local:network": "hardhat run scripts/verify-local.ts --network $NETWORK",
"test:coverage": "hardhat coverage",
"test:gas": "REPORT_GAS=TRUE hardhat test",
"write-example-env-file": "hardhat run scripts/write-example-env-file.ts"
},
"devDependencies": {
"@api3/chains": "^8.1.1",
"@nomicfoundation/hardhat-verify": "^2.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@typechain/ethers-v5": "^11.1.2",
"chai": "^4.4.1",
"copyfiles": "^2.4.1",
"ethereum-waffle": "^4.0.10",
"hardhat": "^2.14.1",
"hardhat-deploy": "^0.12.4",
"hardhat-gas-reporter": "^2.2.1",
"rimraf": "^5.0.5",
"solidity-coverage": "^0.8.12",
"typechain": "^8.3.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@api3/airnode-protocol-v1": "^3.3.0",
"@openzeppelin/contracts": "4.4.2",
"ethers": "^5.7.2"
}
}