-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.86 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
{
"name": "wban-nfts",
"version": "0.3.00",
"description": "Smart-contracts for wBAN NFTs",
"author": "Wrap That Potassium <[email protected]>",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/wBanano/wban-nfts"
},
"keywords": [
"Banano",
"Wrapped Banano",
"NFT",
"Polygon",
"Wrapped Token"
],
"files": [
"contracts",
"dist"
],
"engines": {
"node": ">=10"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.2.0",
"@openzeppelin/contracts-upgradeable": "^4.2.0",
"@openzeppelin/hardhat-upgrades": "^1.9.0",
"@pinata/sdk": "^1.1.25",
"@typechain/ethers-v5": "^6.0.5",
"@typechain/hardhat": "^1.0.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/mustache": "^4.1.2",
"@types/node": "^14.14.37",
"@types/sharp": "^0.30.2",
"bottleneck": "^2.19.5",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.3.0",
"ethers": "5.0.32",
"get-all-files": "^4.1.0",
"hardhat": "^2.2.1",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-dependency-compiler": "^1.1.1",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-log-remover": "^2.0.1",
"hardhat-preprocessor": "^0.1.3",
"hardhat-spdx-license-identifier": "^2.0.3",
"mocha": "^8.3.2",
"mustache": "^4.2.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"rimraf": "^3.0.0",
"sharp": "^0.30.5",
"solhint": "^3.3.4",
"solidity-coverage": "v0.8.0-beta.0",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.1.3",
"typestub-ipfs-only-hash": "^4.0.0"
},
"resolutions": {
"@nomiclabs/hardhat-solhint/solhint": "^3.3.2"
},
"scripts": {
"clean": "rimraf ./artifacts/ ./flatten/ ./coverage/ ./coverage.json ./cache/ ./output ./dist",
"compile": "yarn hardhat compile && yarn tsc",
"postcompile": "copyfiles -u 2 \"artifacts/typechain/**/*.d.ts\" dist",
"pretest": "yarn compile",
"test": "yarn hardhat test",
"prepublishOnly": "yarn test",
"check": "yarn hardhat check",
"solhint": "solhint \"contracts/**/*.sol\" -f unix",
"lint": "prettier --check \"contracts/**/*.{sol,ts,js}\"",
"prettier": "prettier --write \"contracts/**/*.{sol,ts,js}\"",
"coverage": "yarn hardhat coverage",
"node:watch": "yarn hardhat node --watch",
"ipfs:prepare": "ts-node ./src/main.ts"
}
}