-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.14 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
{
"name": "eth-upgradable-nft",
"version": "1.0.0",
"description": "Upgradable NFT smart contract starter kit",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khandelwal-arpit/eth-upgradable-nft.git"
},
"keywords": [
"Ethereum",
"Solidity",
"Smart-Contract",
"Dapp",
"NFT",
"ERC-721",
"Truffle",
"Ganache"
],
"author": "Arpit Khandelwal",
"license": "MIT",
"bugs": {
"url": "https://github.com/khandelwal-arpit/eth-upgradable-nft/issues"
},
"homepage": "https://github.com/khandelwal-arpit/eth-upgradable-nft#readme",
"dependencies": {
"@openzeppelin/contracts": "^4.4.1",
"@openzeppelin/contracts-upgradeable": "^4.4.1",
"@truffle/hdwallet-provider": "^2.0.0",
"dotenv": "^10.0.0"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.15",
"@openzeppelin/truffle-upgrades": "^1.11.0",
"solidity-coverage": "^0.7.17",
"truffle-plugin-verify": "^0.5.20",
"web3-utils": "^1.6.1"
}
}