-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
77 lines (77 loc) · 2.82 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "storage-incentives",
"private": true,
"version": "0.1.0",
"description": "Swarm storage incentives contracts",
"repository": "[email protected]:ethersphere/storage-incentives.git",
"author": "Swarm Developers",
"license": "GPLv3-or-later",
"keywords": [
"swarm",
"storage incentives",
"ethereum",
"contracts"
],
"dependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.5",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@openzeppelin/contracts": "4.8.2",
"dotenv": "^16.0.3",
"ethers": "^5.7.0",
"hardhat": "^2.11.2",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-deploy": "^0.11.25",
"hardhat-deploy-ethers": "^0.3.0-beta.5",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-preprocessor": "^0.1.5",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.8.1",
"typescript": "^4.0.5"
},
"devDependencies": {
"@ethereum-waffle/chai": "^4.0.10",
"@ethersproject/wallet": "^5.0.7",
"@fairdatasociety/bmt-js": "^2.1.0",
"@tenderly/hardhat-tenderly": "^1.7.7",
"@types/chai": "^4.2.14",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"axios": "^1.6.1",
"chai": "^4.2.0",
"chai-ethers": "^0.0.1",
"cross-env": "^7.0.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"ethereum-waffle": "^4.0.10",
"ethereumjs-abi": "^0.6.8",
"ganache-cli": "^6.12.2",
"mocha": "^10.2.0",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.59"
},
"scripts": {
"lint": "eslint \"**/*.{js,ts}\"",
"lint:fix": "eslint --fix \"**/*.{js,ts}\"",
"format": "prettier --write \"**/*.{ts,js,sol}\"",
"format:check": "prettier --check \"**/*.{ts,js,sol}\"",
"test": "cross-env HARDHAT_DEPLOY_FIXTURE=true HARDHAT_COMPILE=true mocha --bail --recursive test --timeout 300000 --exit",
"test:coverage": "hardhat coverage",
"dev": "hardhat node --reset --watch --export contractsInfo.json",
"compile": "hardhat compile",
"local:deploy": "hardhat --network localhost deploy",
"local:run": "cross-env HARDHAT_NETWORK=localhost ts-node --files",
"local:export": "hardhat --network localhost export",
"void:deploy": "hardhat deploy",
"staging:deploy": "hardhat --network staging deploy",
"staging:export": "hardhat --network staging export",
"staging:seed": "cross-env HARDHAT_NETWORK=staging ts-node --files scripts/seed.ts",
"hardhat": "hardhat",
"deploy:hardhat": "hardhat run scripts/deployer.ts --network hardhat",
"deploy:testnet": "hardhat run scripts/deployer.ts --network testnet",
"deploy:mainnet": "hardhat run scripts/deployer.ts --network mainnet",
"deploy": "hardhat run scripts/deployer.ts --network"
}
}