-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 4.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
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
{
"name": "@thebards/thebards-protocol",
"version": "1.0.0",
"private": false,
"homepage": "https://thebards.xyz",
"repository": {
"type": "git",
"url": "https://github.com/thebards/thebards-protocol.git"
},
"files": [
"dist/**/*",
"dist/*"
],
"dependencies": {
"ethers": "^5.4.4",
"@openzeppelin/contracts": "^4.5.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.2",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@typechain/ethers-v5": "^10.0.0",
"@ethersproject/experimental": "^5.4.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"@openzeppelin/hardhat-upgrades": "^1.6.0",
"@openzeppelin/contracts": "^4.5.0",
"@rari-capital/solmate": "^6.4.0",
"@typechain/hardhat": "3.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.3",
"chai": "^4.3.6",
"hardhat": "^2.10.2",
"ipfs-http-client": "^47.0.1",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4",
"p-queue": "^6.6.1",
"hardhat-gas-reporter": "^1.0.4",
"@manifoldxyz/royalty-registry-solidity": "^1.0.9",
"defender-relay-client": "^1.28.1",
"dotenv": "^16.0.1",
"hardhat-abi-exporter": "^2.10.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-log-remover": "^2.0.2",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-storage-layout": "^0.1.7",
"hardhat-tracer": "^1.1.0-rc.9",
"winston": "^3.8.2",
"solidity-coverage": "^0.7.16",
"cli-table": "^0.3.6",
"husky": "^7.0.4"
},
"lint-staged": {
"*.{ts,js,css,md,sol}": "prettier --write",
"*.sol": "solhint"
},
"scripts": {
"prepare": "husky install",
"build": "SKIP_LOAD=true scripts/build",
"clean": "forge clean && rm -rf ./dist build/ cache/ dist/",
"prepublishOnly": "scripts/prepublish",
"typechain": "typechain --target=ethers-v5 'dist/artifacts/*/*.json' --out-dir dist/typechain",
"test": "scripts/test",
"test:gas": "RUN_EVM=true REPORT_GAS=true scripts/test",
"test:coverage": "scripts/coverage",
"quick-test": "hardhat test",
"spdx": "hardhat prepend-spdx-license",
"size": "npm run compile && hardhat size-contracts",
"migrate-accounts-mumbai": "yarn hardhat migrate:accounts --network mumbai --bards-config configs/bards.mumbai.yml",
"migrate-accounts-polygon": "yarn hardhat migrate:accounts --network ploygon --bards-config configs/bards.polygon.yml",
"full-deploy-local": "hardhat full-deploy --network localhost",
"full-deploy-mumbai": "hardhat full-deploy --network mumbai",
"predeploy": "scripts/predeploy",
"deploy": "yarn build && yarn predeploy && hardhat migrate",
"deploy-localhost": "yarn deploy --network localhost --bards-config configs/bards.localhost.yml",
"deploy-mumbai": "yarn deploy --network mumbai --bards-config configs/bards.mumbai.yml",
"deploy-goerli": "yarn deploy --network goerli --bards-config configs/bards.goerli.yml",
"coverage": "npm run compile && hardhat coverage --temp temp-artifacts --testfiles test/emptyrun.coverage.ts && hardhat coverage --temp temp-artifacts --testfiles '!test/emptyrun.coverage.ts'",
"run-env": "npm i && tail -f /dev/null",
"hardhat": "hardhat",
"hardhat:goerli": "hardhat --network goerli",
"hardhat:tenderly-main": "hardhat --network tenderlyMain",
"hardhat:sepolia": "hardhat --network sepolia",
"hardhat:main": "hardhat --network main",
"hardhat:docker": "hardhat --network hardhatevm_docker",
"hardhat:mumbai": "hardhat --network mumbai",
"hardhat:matic": "hardhat --network matic",
"compile": "SKIP_LOAD=true hardhat clean && SKIP_LOAD=true hardhat compile",
"console:fork": "MAINNET_FORK=true hardhat console",
"format": "prettier --write .",
"lint": "eslint .",
"analyze": "scripts/analyze",
"verify": "hardhat verify",
"verifyAll-mumbai": "yarn hardhat verifyAll --network mumbai --bards-config configs/bards.mumbai.yml"
},
"author": "TheBards",
"contributors": [
"bards (thebards.eth)"
],
"license": "MIT",
"keywords": [
"theBards",
"protocol",
"story",
"social",
"NFT",
"solidity",
"evm",
"contracts",
"core",
"curation"
]
}