-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.24 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.24 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "test-struct",
"version": "0.0.1",
"description": "Test structs",
"main": "hardhat.config.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "npm run build && npx hardhat test",
"coverage": "npm run build && npx cross-env NODE_OPTIONS=\"--max_old_space_size=8192\" hardhat coverage --temp artifacts --max-memory 4096",
"slither": "npm run build && slither .",
"lint": "tslint -p tsconfig.json",
"lint:sol": "solhint -f table **/*.sol",
"lint-fix": "tslint --fix -p tsconfig.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@gelatonetwork/web3-functions-sdk": "^2.0.5",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-solhint": "^3.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.8.2",
"@openzeppelin/contracts-upgradeable": "^4.8.2",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-string": "^1.4.2",
"@types/debug": "^4.1.8",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.3",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"csv-stringify": "^6.3.0",
"dotenv": "^16.0.3",
"ethereumjs-tx": "^2.1.2",
"ethers": "5.7.2",
"hardhat": "2.14.1",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-change-network": "^0.0.7",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-deploy": "^0.11.25",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^10.2.0",
"reflect-metadata": "^0.1.13",
"solidity-coverage": "^0.8.4",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslog": "^4.8.2",
"typechain": "^8.1.1",
"typeorm": "^0.3.16",
"typescript": "^5.0.2",
"urql": "^3.0.4",
"web3": "^1.8.2",
"yargs": "^17.7.1"
},
"engines": {
"node": "^18.x.x"
}}