-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.59 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.59 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "magic-craft-contracts",
"version": "1.0.0",
"description": "Magic Craft contracts",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"coverage": "npx hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./tests/**/*.ts\"",
"deploy": "hardhat run deploy/deploy.ts",
"deploy:nft": "hardhat run deploy/nft.ts",
"deploy:network": "hardhat run deploy/deploy.ts --network",
"ganache": "yarn ganache-cli -e 1000000000000 -a 100 --networkId 999 -p 8545",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"verify": "hardhat verify --network",
"flatten": "hardhat flatten"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MagicCraftCompany/Contract.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MagicCraftCompany/Contract"
},
"homepage": "https://github.com/MagicCraftCompany/Contract#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "^1.8.2",
"@openzeppelin/test-helpers": "^0.5.15",
"@typechain/truffle-v5": "^4.0.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.3.4",
"dotenv": "^8.6.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^6.12.0",
"ethers": "^5.2.0",
"hardhat": "^2.3.0",
"hardhat-contract-sizer": "^2.1.0",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solhint": "^3.3.5",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"typechain": "^4.0.3",
"typescript": "^3.9.7"
},
"dependencies": {
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.4.2",
"@openzeppelin/contracts-upgradeable": "^4.4.2",
"@truffle/hdwallet-provider": "^1.4.0",
"axios": "^0.27.0",
"ethereum-waffle": "^3.4.0",
"ganache-cli": "^6.12.2",
"hardhat-typechain": "^0.3.4",
"multi-token-standard": "^2.2.2",
"truffle": "^5.3.7",
"truffle-flattener": "^1.5.0",
"truffle-plugin-verify": "^0.5.6",
"ts-node": "^9.1.1"
}
}