This repository has been archived by the owner on Mar 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
83 lines (83 loc) · 3.21 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
{
"name": "@opensea/seaport-order-validator",
"version": "0.1.1",
"license": "MIT",
"author": "OpenSea Developers",
"homepage": "https://github.com/ProjectOpenSea/seaport-order-validator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectOpenSea/seaport-order-validator.git"
},
"scripts": {
"test": "hardhat compile && hardhat test 'test/ValidateOrdersMainnet.spec.ts' 'test/TestErrorsAndWarningsMainnet.spec.ts' && hardhat test 'test/ValidateOrderArbitrum.spec.ts' --config hardhatArbitrum.config.ts",
"profile": "REPORT_GAS=true yarn test",
"coverage": "hardhat compile && hardhat coverage --testfiles 'test/*Mainnet.spec.ts' --solcoverjs ./configs/solcover-mainnet.js && hardhat coverage --testfiles 'test/*Arbitrum.spec.ts' --config hardhatArbitrum.config.ts --solcoverjs ./configs/solcover-arbitrum.js && mkdir -p coverage && ./node_modules/.bin/lcov-result-merger 'coverage-*/lcov.info' 'coverage/lcov.info'",
"prepare": "husky install",
"build": "hardhat clean && hardhat compile && tsc -p ./tsconfig.build.json",
"lint:fix": "prettier --write **.{sol,js,ts} && eslint --fix . --ext js,ts",
"lint:check": "concurrently \"prettier --check **.{sol,js,ts}\" \"eslint . --ext js,ts\"",
"verify": "hardhat verify --network verificationNetwork 0xF75194740067D6E4000000003b350688DD770000",
"prepack": "yarn build"
},
"main": "dist/src/index.js",
"files": [
"dist",
"artifacts/contracts/lib/SeaportValidator.sol/SeaportValidator.json",
"contracts/README.md"
],
"types": "dist/src/index.d.ts",
"dependencies": {
"ethers": "^5.7.0",
"got": ">=11.8.5",
"minimatch": ">=3.0.5",
"undici": ">=5.8.2"
},
"devDependencies": {
"@ethersproject/abi": "^5.4.7",
"@ethersproject/providers": "^5.4.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/contracts": "^4.7.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.0",
"@types/mocha": "^9.1.0",
"@types/node": ">=12.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"chai": "^4.2.0",
"concurrently": "^7.2.2",
"dotenv": "^16.0.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"hardhat": "^2.10.1",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.1",
"lcov-result-merger": "^3.3.0",
"lint-staged": "^13.0.3",
"prettier-plugin-solidity": "^1.0.0-dev.22",
"solidity-coverage": "^0.7.21",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": ">=4.5.0"
},
"lint-staged": {
"*.sol": "prettier --check",
"*.js": "prettier --check",
"*.ts": "prettier --check"
},
"resolutions": {
"got": ">=11.8.5",
"undici": ">=5.8.2",
"glob-parent": ">=5.1.2",
"minimatch": ">=3.0.5"
}
}