-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.66 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "matters-avatar",
"version": "0.1.0",
"description": "",
"scripts": {
"localhost:start": "hardhat node",
"localhost:console": "hardhat console --network localhost",
"localhost:deploy": "hardhat run --network localhost scripts/prepare/deploy.ts",
"localhost:store": "hardhat run --network localhost scripts/prepare/store.ts",
"localhost:set:baseURI": "hardhat set:baseURI --network localhost",
"localhost:set:preOrder": "hardhat set:preOrder --network localhost",
"localhost:mint:batch": "hardhat mint:batch --network localhost",
"localhost:mint:lottery": "hardhat mint:lottery --network localhost",
"rinkeby:console": "hardhat console --network rinkeby",
"rinkeby:deploy": "hardhat run --network rinkeby scripts/prepare/deploy.ts",
"rinkeby:verify": "hardhat run --network rinkeby scripts/prepare/verify.ts",
"rinkeby:store": "hardhat run --network rinkeby scripts/prepare/store.ts",
"rinkeby:set:preOrder": "hardhat set:preOrder --network rinkeby",
"rinkeby:set:baseURI": "hardhat set:baseURI --network rinkeby",
"rinkeby:set:opensea": "hardhat set:opensea --network rinkeby",
"rinkeby:mint:batch": "hardhat mint:batch --network rinkeby",
"rinkeby:mint:lottery": "hardhat mint:lottery --network rinkeby",
"mainnet:deploy": "hardhat run --network mainnet scripts/prepare/deploy.ts",
"mainnet:verify": "hardhat run --network mainnet scripts/prepare/verify.ts",
"mainnet:store": "hardhat run --network mainnet scripts/prepare/store.ts",
"mainnet:set:preOrder": "hardhat set:preOrder --network mainnet",
"mainnet:set:baseURI": "hardhat set:baseURI --network mainnet",
"mainnet:mint:batch": "hardhat mint:batch --network mainnet",
"mainnet:mint:lottery": "hardhat mint:lottery --network mainnet",
"mainnet:set:opensea": "hardhat set:opensea --network mainnet",
"mainnet:get:owners": "hardhat get:owners --network mainnet",
"generate": "ts-node ./scripts/generate.ts",
"build": "hardhat compile",
"test": "hardhat test",
"prepare": "husky install",
"lint": "npm run lint:solhint && npm run lint:eslint",
"lint:solhint": "solhint 'contracts/**/*.sol'",
"lint:eslint": "eslint . --ext .js,.jsx,.ts,.tsx",
"coverage": "hardhat coverage",
"format": "prettier --write \"{,!(node_modules|build|coverage|artifacts|assets|cache)/**/}*.{sol,js,jsx,ts,tsx,json}\""
},
"keywords": [],
"author": "Matters Lab",
"license": "Apache 2.0",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"@types/chai": "^4.3.0",
"@types/lodash": "^4.14.180",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"articles": "^0.2.2",
"chai": "^4.3.6",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.6.1",
"hardhat": "^2.9.1",
"hardhat-abi-exporter": "^2.8.0",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^7.0.4",
"ipfs-http-client": "^56.0.1",
"opensea-js": "^3.0.2",
"prettier": "^2.6.0",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.20",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"web3": "1.6"
},
"prettier": {
"printWidth": 80,
"singleQuote": false
},
"dependencies": {
"@0x/assert": "^3.0.30",
"@0x/subproviders": "6.6",
"@types/web3-provider-engine": "^14.0.1",
"web3-provider-engine": "^16.0.3"
}
}