forked from Itsavirus-com/infi-smartcontract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.65 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": "@project/solidity",
"version": "0.0.2",
"description": "",
"main": "index.js",
"eslintConfig": {
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true,
"optionalDependencies": false
}
]
}
},
"scripts": {
"build": "npm run compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"typechain": "npx hardhat typechain",
"react": "env DEBUG=hardhat:plugin:react npx hardhat react",
"test": "npx hardhat test --deploy-fixture",
"test-local": "npx hardhat test --network localhost",
"run-script": "npx ts-node --files",
"run-local": "env HARDHAT_NETWORK=localhost npx ts-node --files",
"start": "env HARDHAT_DEPLOY_FORK=mumbai npx hardhat node --hostname 0.0.0.0 --watch",
"deploy": "npx hardhat deploy",
"verify": "npx hardhat etherscan-verify",
"verify2": "npx hardhat sourcify --write-failing-metadata",
"console": "npx hardhat console",
"console-local": "npx hardhat console --network localhost",
"coverage": "npm run build && npx hardhat coverage --temp artifacts --network coverage",
"tenderly-export": "npx tenderly export"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhlsthrm/solidity-ts-dev-stack-example.git"
},
"author": "rhlsthrm",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhlsthrm/solidity-ts-dev-stack-example/issues"
},
"homepage": "https://github.com/rhlsthrm/solidity-ts-dev-stack-example#readme",
"devDependencies": {
"@asheliahut/hardhat-react": "npm:@heri16/hardhat-react@^0.4.5",
"@chainlink/contracts": "^0.2.1",
"@defi-wonderland/smock": "^2.0.7",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"@project/contracts": "^1.0.0",
"@tenderly/hardhat-tenderly": "^1.0.12",
"@typechain/ethers-v5": "^7.0.0",
"@typechain/hardhat": "^2.1.0",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.1",
"@types/fs-extra": "^9.0.11",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dotenv": "^9.0.2",
"erc-payable-token": "^4.1.1",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.4.1",
"hardhat": "^2.2.1",
"hardhat-deploy": "^0.8.11",
"hardhat-gas-reporter": "^1.0.4",
"ts-morph": "^11.0.0",
"ts-node": "^9.1.1",
"typechain": "^5.0.0",
"typescript": "^4.2.4"
},
"dependencies": {}
}