forked from api3dao/airnode-protocol-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.04 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.04 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
54
{
"name": "@api3/airnode-protocol-v1",
"license": "MIT",
"version": "0.7.0",
"private": false,
"main": "dist/index",
"files": [
"contracts",
"dist",
"deployments/references.json"
],
"scripts": {
"build": "yarn clean && yarn build:contracts && yarn build:tsc",
"build:contracts": "hardhat compile",
"build:tsc": "yarn build:contract-dts && yarn build:copy-contract-dts && tsc -p tsconfig.build.json",
"build:contract-dts": "yarn typechain --target ethers-v5 --out-dir ./src/contracts \"./artifacts/contracts/**/!(*.dbg).json\"",
"build:copy-contract-dts": "copyfiles -u 1 \"src/contracts/**/*.d.ts\" dist/src",
"clean": "rimraf -rf ./dist *.tgz src/contracts artifacts cache",
"deploy:deterministic": "DETERMINISTIC=true hardhat deploy --network $NETWORK",
"deploy:undeterministic": "hardhat deploy --network $NETWORK",
"lint": "yarn run prettier:check && yarn run lint:eslint && yarn run lint:solhint",
"lint:solhint": "solhint ./contracts/**/*.sol",
"lint:eslint": "eslint . --ext .js,.ts",
"prettier:check": "prettier --check \"./**/*.{js,ts,md,json,sol}\"",
"prettier:write": "prettier --write \"./**/*.{js,ts,md,json,sol}\"",
"test": "hardhat test --parallel",
"test:extended": "EXTENDED_TEST=TRUE hardhat test --parallel",
"test:coverage": "hardhat coverage",
"test:gas": "REPORT_GAS=TRUE hardhat test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^10.0.0",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"eslint": "^8.12.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.5",
"hardhat": "^2.6.5",
"hardhat-deploy": "^0.11.4",
"hardhat-gas-reporter": "^1.0.4",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"rimraf": "^3.0.2",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.16",
"typechain": "^8.0.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.4.2"
}
}