-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 2.92 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
78
79
{
"name": "sw3",
"version": "0.2.0",
"description": "Contracts for Swap, Swear and Swindle.",
"repository": {
"type": "git",
"url": "https://github.com/ethersphere/swap-swear-and-swindle.git"
},
"dependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-verify": "^2.0.5",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@openzeppelin/contracts": "^3.4.1-solc-0.7-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",
"@nomiclabs/hardhat-truffle5": "^2.0.2",
"@openzeppelin/test-helpers": "^0.5.15",
"@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",
"bn-chai": "^1.0.1",
"chai": "^4.2.0",
"chai-ethers": "^0.0.1",
"cross-env": "^7.0.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ethereum-waffle": "^4.0.10",
"ethereumjs-abi": "^0.6.8",
"ganache-cli": "^6.12.2",
"hardhat-tracer": "^2.1.2",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"solhint": "^4.1.1"
},
"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",
"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"
},
"keywords": [],
"author": "",
"license": "ISC"
}