-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.69 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.69 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
{
"name": "smart-contracts-simulator",
"description": "Simulator for WeatherXM smart contracts",
"main": "index.js",
"author": "",
"license": "ISC",
"scripts": {
"setup": "npm install",
"start:local": "./node_modules/.bin/hardhat --config hardhat.config.ts node",
"compile:local": "./node_modules/.bin/hardhat --config hardhat.config.ts compile",
"deploy:local": "./node_modules/.bin/hardhat run --config hardhat.config.ts --network localhost ./scripts/deploy.ts",
"deploy:hardhat": "./node_modules/.bin/hardhat run --config hardhat.config.ts ./scripts/deploy.ts",
"simulate:local": "./node_modules/.bin/hardhat run --config hardhat.config.ts --network localhost ./scripts/simulate.ts",
"node": "hardhat node",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.ts --network localhost --no-compile",
"simulate": "hardhat run scripts/simulate.ts --network localhost --no-compile",
"createRemappings": "ts-node ./scripts/createRemappings.ts",
"createEnv": "ts-node ./scripts/createEnv.ts"
},
"devDependencies": {
"@chainlink/contracts": "^0.6.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "4.8.2",
"@openzeppelin/contracts-upgradeable": "4.8.2",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@openzeppelin/merkle-tree": "^1.0.4",
"@typechain/hardhat": "^6.1.5",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"hardhat": "2.14.0"
},
"dependencies": {
"@nomiclabs/hardhat-solhint": "^3.0.1",
"hardhat-preprocessor": "^0.1.5",
"solidity-docgen": "^0.6.0-beta.35"
}
}