-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
executable file
·61 lines (61 loc) · 1.89 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
{
"name": "@maticnetwork/fx-portal",
"version": "1.0.5",
"description": "FxPortal for Polygon chain. No mapping. Seamless.",
"main": "index.js",
"scripts": {
"lint": "npm run lint:sol && npm run prettier:check",
"lint:sol": "solhint \"{script,contracts,test}/**/*.sol\" --quiet",
"prettier:check": "prettier --check \"{script,contracts,test,hardhat}/**/*.{sol,ts}\"",
"prettier:write": "prettier --write \"{script,contracts,test,hardhat}/**/*.{sol,ts}\"",
"build": "hardhat compile",
"test": "hardhat test",
"test:forge": "forge test -vvv",
"coverage": "./coverage.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fx-portal/contracts.git"
},
"keywords": [
"ethereum",
"matic"
],
"author": "Jaynti Kanani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fx-portal/contracts/issues"
},
"homepage": "https://github.com/fx-portal/contracts#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.0",
"@typechain/ethers-v5": "^7.0.1",
"@types/mocha": "^9.0.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.4.4",
"hardhat": "^2.14.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "0.11.30",
"hardhat-gas-reporter": "1.0.9",
"import-toml": "^1.0.0",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.0",
"solidity-coverage": "0.8.2",
"ts-node": "^10.3.0",
"typechain": "^5.1.2",
"typescript": "^4.4.4"
},
"dependencies": {
"@ethereumjs/block": "^3.6.1",
"@typechain/hardhat": "^2.3.0",
"ethereumjs-block": "2.2.0",
"ts-generator": "^0.1.1",
"web3": "^1.7.1"
}
}