-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.26 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
{
"name": "@mathieu-bour/erc721-revocable",
"description": "OpenZeppelin's ERC721 contract with an additional revocableMintTo which creates revocable ERC721 tokens.",
"version": "0.0.1",
"homepage": "https://github.com/mathieu-bour/erc721-revocable#readme",
"bugs": "https://github.com/mathieu-bour/erc721-revocable/issues",
"license": "MIT",
"maintainers": [
"Mathieu Bour <[email protected]> (https://github.com/mathieu-bour)"
],
"files": [
"dist/**"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "github:mathieu-bour/erc721-revocable",
"scripts": {
"clean": "hardhat clean && rimraf dist/",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,css,less,sass,scss,json,json5,yml,yaml,md,mdx,graphql,sol}'",
"format:check": "prettier --check '**/*.{js,jsx,ts,tsx,css,less,sass,scss,json,json5,yml,yaml,md,mdx,graphql,sol}'",
"lint": "solhint 'contracts/**/*.sol'",
"compile": "hardhat compile",
"test": "hardhat test",
"test:coverage": "hardhat coverage",
"test:gas": "REPORT_GAS=true hardhat test",
"deploy": "hardhat run scripts/deploy.ts",
"build": "pnpm clean && pnpm compile && tsc -p tsconfig.package.json"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@mathieu-bour/prettier-config": "^1.1.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.4",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@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.3.3",
"@types/lodash": "^4.14.184",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.13",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"ethers": "^5.7.0",
"hardhat": "^2.10.2",
"hardhat-gas-reporter": "^1.0.8",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.2"
},
"prettier": "@mathieu-bour/prettier-config"
}