forked from Quantum-Blockchains/qrng-api3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.22 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
{
"name": "qrng-api3",
"version": "1.0.0",
"description": "Smart contracts connecting QuantumBlockchains QRNG API with API3",
"main": "index.js",
"author": "QuantumBlockchains",
"license": "MIT",
"scripts": {
"clean": "npx hardhat clean",
"compile": "TS_NODE_TRANSPILE_ONLY=1 npx hardhat compile && npx hardhat",
"test": "TS_NODE_TRANSPILE_ONLY=1 npx hardhat test",
"start-node": "TS_NODE_TRANSPILE_ONLY=1 npx hardhat node",
"docs": "npx hardhat docgen",
"deploy:local": "npx hardhat deploy --tags local",
"deploy:goerli": "npx hardhat --network goerli deploy --tags goerli",
"verify:goerli": "hardhat --network goerli etherscan-verify --license UNLICENSED",
"format": "npx prettier --write 'contracts/**/*.sol'",
"lint": "npx solhint 'contracts/**/*.sol'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quantum-Blockchains/qrng-api3.git"
},
"keywords": [
"governance",
"staking"
],
"homepage": "https://quantumblockchains.io/",
"devDependencies": {
"@api3/airnode-protocol": "^0.9.2",
"@defi-wonderland/smock": "^2.3.4",
"@ethersproject/abi": "^5.4.7",
"@ethersproject/providers": "^5.4.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@openzeppelin/contracts": "^4.7.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.0",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.0",
"@types/node": ">=12.0.0",
"chai": "^4.2.0",
"chai-bignumber": "^3.0.0",
"dotenv": "^10.0.0",
"ethers": "^5.4.7",
"fs-extra": "^10.1.0",
"hardhat": "^2.12.5",
"hardhat-deploy": "^0.11.15",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solidity-coverage": "^0.7.21",
"ts-node": ">=8.0.0",
"tslint": "^6.1.3",
"typechain": "^8.1.0",
"typescript": "^4.8.3",
"typescript-formatter": "^7.2.2"
},
"resolutions": {
"ethereumjs-abi": "https://registry.npmjs.org/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz"
}
}