forked from ourzora/nft-editions
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.14 KB
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
{
"name": "@zien/expanded-nfts",
"version": "1.0.1",
"description": "Expanded NFTs Contracts",
"main": "index.js",
"author": "Zien",
"license": "GPL-3.0",
"private": false,
"files": [
"typechain",
"contracts",
"deployments"
],
"repository": {
"type": "git",
"url": "https://github.com/joinzien/expanded-nfts.git"
},
"scripts": {
"typechain": "hardhat typechain",
"compile": "hardhat compile",
"deploy": "hardhat deploy",
"test": "npm run typechain && hardhat test",
"coverage": "npm run typechain && hardhat coverage",
"build": "yarn run prepack",
"prepack": "hardhat compile",
"lint": "npx solhint 'contracts/**/*.sol' && npx prettier '**/*.{json,md}' --write",
"size": "yarn hardhat size-contracts",
"verify": "yarn hardhat sourcify --network goerli && yarn hardhat etherscan-verify --network goerli"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@typechain/ethers-v5": "^7.1.0",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.3.11",
"@types/data-urls": "^3.0.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.10",
"dotenv": "^16.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^5.2.0",
"ethereum-waffle": "^4.0.10",
"hardhat": "^2.19.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.11.44",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^3.1.0",
"prettier-plugin-solidity": "^1.2.0",
"solhint": "^4.0.0",
"solidity-coverage": "^0.8.5",
"ts-node": "^10.1.0",
"typechain": "^5.1.2",
"typescript": "^5.3.2"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"base64-sol": "^1.1.0",
"ethers": "^5.7.1",
"yarn": "^1.22.21"
}
}