-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.92 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@shoyunft/contracts",
"version": "2.0.5",
"description": "ShoyuNFT",
"main": "contracts/Shoyu.sol",
"author": "0xMasayoshi",
"license": "MIT",
"private": false,
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.7.0",
"@openzeppelin/contracts-upgradeable": "^4.7.0",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"@rari-capital/solmate": "^6.2.0",
"@sushiswap/core": "^1.4.2",
"@sushiswap/core-sdk": "^1.0.0-canary.34",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@types/readline-sync": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.0",
"ethers-eip712": "^0.2.0",
"hardhat": "^2.12.1-ir.0",
"hardhat-abi-exporter": "^2.10.0",
"hardhat-deploy": "^0.11.10",
"hardhat-gas-reporter": "^1.0.7",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"readline-sync": "^1.4.10",
"scuffed-abi": "^1.0.4",
"seaport": "git+https://github.com/ProjectOpenSea/seaport.git#3222948aa91c3b89b3935b4043ec8b9d9b0ccb6a",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.4.0",
"typechain": "^8.0.0",
"typescript": "^4.5.4"
},
"resolutions": {
"async": ">=2.6.4",
"cross-fetch": ">=3.1.5",
"lodash": ">=4.17.21",
"node-fetch": ">=2.6.7",
"underscore": ">=1.12.1",
"yargs-parser": ">=5.0.1"
},
"scripts": {
"build": "hardhat compile --config ./hardhat.config.ts",
"test": "hardhat test --config ./hardhat.config.ts",
"profile": "REPORT_GAS=true hardhat test --config ./hardhat.config.ts",
"coverage": "hardhat coverage --config ./hardhat-coverage.config.ts --solcoverjs ./config/.solcover.js",
"lint:check": "prettier --check **.sol && prettier --check **.js && prettier --check **.ts && hardhat compile --config ./hardhat.config.ts && npx solhint --config ./config/.solhint.json --ignore-path ./config/.solhintignore 'contracts/**/*.sol'",
"lint:fix": "prettier --write **.sol && prettier --write **.js && prettier --write **.ts",
"goerli:deploy": "hardhat --network goerli deploy",
"goerli:verify": "hardhat --network goerli etherscan-verify --license MIT",
"goerli:export": "hardhat --network goerli export --export exports/goerli.json"
},
"lint-staged": {
"*.sol": "prettier --write",
"*.js": "prettier --write",
"*.ts": "prettier --write"
},
"prettier": {
"overrides": [
{
"files": "*.sol",
"options": {
"tabWidth": 4,
"printWidth": 80,
"bracketSpacing": true
}
}
]
},
"eslintConfig": {
"env": {
"browser": false,
"es2021": true,
"mocha": true,
"node": true
},
"plugins": [
"@typescript-eslint",
"import"
],
"extends": [
"standard",
"plugin:prettier/recommended",
"eslint:recommended",
"plugin:import/recommended",
"plugin:import/typescript"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"node/no-unsupported-features/es-syntax": [
"error",
{
"ignores": [
"modules"
]
}
]
}
},
"eslintIgnore": [
"node_modules",
"artifacts",
"cache",
"coverage"
]
}