forked from rmrk-team/evm-sample-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.85 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
{
"name": "@rmrk-team/evm-contract-samples",
"version": "0.1.0",
"description": "Set of sample contracts created using RMRK standard package: @rmrk-team/evm-contracts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy-equippable": "hardhat run scripts/deployEquippable.ts",
"deploy-multi-asset": "hardhat run scripts/deployMultiAsset.ts",
"deploy-nestable": "hardhat run scripts/deployNestable.ts",
"deploy-nestable-multi-asset": "hardhat run scripts/deployNestableMultiAsset.ts",
"deploy-split-equippable": "hardhat run scripts/deploySplitEquippable.ts",
"user-journey-nestable": "hardhat run scripts/nestableUserJourney.ts",
"user-journey-multi-asset": "hardhat run scripts/multiAssetUserJourney.ts",
"user-journey-nestable-multi-asset": "hardhat run scripts/nestableMultiAssetUserJourney.ts",
"user-journey-merged-equippable": "hardhat run scripts/mergedEquippableUserJourney.ts",
"user-journey-split-equippable": "hardhat run scripts/splitEquippableUserJourney.ts"
},
"keywords": [],
"author": "@rmrk-team",
"license": "Apache-2.0",
"dependencies": {
"@rmrk-team/evm-contracts": "^0.26.0"
},
"devDependencies": {
"@ethersproject/providers": "^5.4.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.3",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.4",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.6",
"hardhat": "^2.12.3",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.3"
}
}