-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.79 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.79 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
41
42
43
44
45
46
47
48
49
{
"name": "smart-contract",
"version": "1.0.0",
"description": "purple-pay smart contracts",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "hardhat node",
"deploy:goerli": "hardhat run --network goerli scripts/deploy.js",
"deploy:polygon": "hardhat run --network matic scripts/deploy.js",
"deploy:mumbai": "hardhat run --network mumbai scripts/deploy.js",
"deploy:mantleTestnet": "hardhat run --network mantleTestnet scripts/deploy.js",
"deploy:local": "hardhat run --network localhost scripts/deploy.js",
"deploy:shibuya": "hardhat run --network shibuya scripts/deploy.js",
"deploy:astar": "hardhat run --network astar scripts/deploy.js",
"deploy:mantle": "hardhat run --network mantle scripts/deploy.js",
"deploy:lineaTestnet": "hardhat run --network lineaTestnet scripts/deploy.js",
"run:local": "hardhat run --network localhost scripts/test.js",
"compile": "hardhat compile --show-stack-traces"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"hardhat": "^2.13.0"
},
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@openzeppelin/contracts": "^4.8.2",
"@openzeppelin/contracts-upgradeable": "^4.8.3",
"@openzeppelin/hardhat-upgrades": "^1.23.1",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"chai": "^4.2.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.8.1",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": ">=4.5.0",
"uuid4": "^2.0.3"
}
}