-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.55 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
{
"name": "OSSS-NFT-Wrapping-Toolkit",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^9.0.0",
"disklet": "^0.5.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.4.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "^1.0.4"
},
"dependencies": {
"@eth-optimism/hardhat-ovm": "^0.2.2",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^2.1.5",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.3.0",
"@openzeppelin/contracts-upgradeable": "^4.3.0",
"@tenderly/hardhat-tenderly": "^1.0.10",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"dotenv": "^10.0.0",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.4.6",
"hardhat": "2.6.0",
"hardhat-deploy": "^0.9.1",
"keccak256": "^1.0.3",
"merkletreejs": "^0.2.24",
"mocha": "^7.1.0",
"moment": "^2.29.1",
"node-watch": "^0.7.0",
"qrcode-terminal": "^0.12.0",
"ramda": "^0.27.1",
"ts-node": "^9.1.1",
"typechain": "^5.0.0",
"typescript": "^4.1.3",
"web3-eth": "^1.5.3"
},
"scripts": {
"generateProof": "npx ts-node tasks/generateProof",
"fetchCollectionData": "npx ts-node tasks/fetchCollectionData",
"chain": "hardhat node --network hardhat --no-deploy",
"fork": "env -- hardhat node --no-deploy --network hardhat --fork https://mainnet.infura.io/v3/$INFURA_KEY",
"test": "TESTING=1 hardhat test --network hardhat",
"compile": "hardhat compile",
"deploy": "hardhat deploy --export-all ../react-app/src/contracts/hardhat_contracts.json",
"export:all": "hardhat export --export-all ../react-app/src/contracts/hardhat_contracts.json",
"flatten": "hardhat flatten",
"postdeploy": "hardhat run scripts/publish.js",
"watch": "node scripts/watch.js",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"send": "hardhat send",
"generate": "hardhat generate",
"account": "hardhat account",
"verify": "hardhat etherscan-verify --api-key PSW8C433Q667DVEX5BCRMGNAH9FSGFZ7Q8"
}
}