-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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
{
"name": "@randomsounds/contracts",
"version": "1.0.0",
"description": "📜 Solidity contract for random sounds NFT",
"main": "RandomSoundsNFT.sol",
"scripts": {
"compile": "hardhat compile",
"prepare": "pnpm test",
"deploy:dev": "hardhat run scripts/deploy.ts --network localhost",
"deploy:polygon": "hardhat run scripts/deploy.ts --network polygon",
"test": "hardhat test",
"coverage": "hardhat coverage"
},
"files": [
"artifacts",
"typechain",
"contracts"
],
"types": "./typechain/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/randomsounds-wtf/contracts"
},
"keywords": [
"solidity",
"nft",
"contracts",
"ethereum"
],
"author": "v1rtl",
"license": "MIT",
"bugs": {
"url": "https://github.com/randomsounds-wtf/contracts/issues"
},
"homepage": "https://github.com/randomsounds-wtf/contracts#readme",
"peerDependencies": {
"@openzeppelin/contracts": "^4.2.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.2.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.2",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.2",
"hardhat": "^2.5.0",
"hardhat-gas-reporter": "^1.0.4",
"node-fetch": "^2.6.1",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^10.1.0",
"typechain": "^5.1.2",
"typescript": "^4.3.5"
}
}