-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.88 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
{
"name": "doaw-contracts",
"version": "1.0.0",
"description": "Dead or Alive Wallet",
"license": "CC-BY-NC-4.0",
"author": "Joan Heemskerk (@johee) and Billy Rennekamp (@okwme)",
"main": "index.js",
"scripts": {
"lint": "eslint . --fix",
"build": "npx webpack --mode development",
"chain": "ganache-cli -m 'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat'",
"deploy": "hardhat run scripts/deploy.js",
"test": "hardhat test",
"generateMetadata": "hardhat run scripts/generateMetadata.js",
"shadoaw-step-1": "hardhat run scripts/mintsFromDoAW.js",
"shadoaw-step-2": "hardhat run scripts/mintsToshaDoAW.js"
},
"dependencies": {
"erc721a": "^4.2.3"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "*",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-ganache": "*",
"@nomiclabs/hardhat-waffle": "*",
"@openzeppelin/contracts": "^4.6.0",
"chai": "*",
"dotenv": "^16.0.1",
"eslint": "^8.26.0",
"ethereum-waffle": "*",
"ethers": "^5.7.0",
"hardhat": "*",
"hardhat-contract-sizer": "*",
"hardhat-gas-reporter": "*",
"merkletreejs": "^0.3.10"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"node": true,
"amd": true,
"es2020": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser",
"ecmaVersion": 12,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"globals": {
"it": "readonly",
"assert": "readonly",
"describe": "readonly",
"before": "readonly",
"ethers": "readonly",
"hre": "readonly"
},
"rules": {
"indent": ["error", 2],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "never"]
}
}
}