-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.02 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": "witnet-feeds",
"version": "2.0.6",
"description": "Public data feeds sustained by the Witnet Foundation",
"repository": {
"type": "git",
"url": "https://github.com/witnet/witnet-feeds"
},
"author": "Guillermo Diaz <[email protected]>",
"license": "MIT",
"private": false,
"bin": {},
"exports": {
".": "./witnet/assets/index.js",
"./assets": "./witnet/assets/index.js",
"./utils": "./scripts/utils.js"
},
"files":[
"artifacts/contracts/",
"scripts/utils.js",
"witnet"
],
"scripts": {
"avail": "npx witnet avail",
"compile": "npx hardhat compile",
"console": "npx witnet console",
"deploy": "node ./scripts/deploy.js",
"ethrpc": "npx witnet ethrpc",
"fmt": "eslint ./scripts/**/*.js",
"fmt!": "eslint ./scripts/**/*.js --fix",
"pfs:deploy": "node ./scripts/deploy.js",
"pfs:sla": "node ./scripts/hardhat-task.js pfs:sla",
"pfs:status": "node ./scripts/hardhat-task.js pfs:status",
"prepare": "npx hardhat compile --force",
"postinstall": "npx witnet-toolkit update",
"test": "npx witnet test"
},
"dependencies": {
"witnet-solidity": "^2.0.3"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomicfoundation/hardhat-web3-v4": "^1.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"chai": "^4.2.0",
"eslint": "8.15.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.2.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"ethers": "^6.4.0",
"hardhat": "^2.19.5",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.8.0",
"typechain": "^8.3.0",
"web3": "^4.5.0",
"truffle": "^5.11.5",
"truffle-plugin-verify": "^0.6.7"
}
}