-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.92 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
{
"name": "@lilnounsdao/contracts",
"version": "0.3.4",
"description": "Lil Nouns solidity contracts & artifacts",
"author": "Nounders",
"homepage": "https://lilnouns.wtf",
"license": "GPL-3.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist tsconfig.build.tsbuildinfo",
"build": "yarn build:sol --force && yarn build:ts && yarn build:declarations",
"build:ts": "tsc -p tsconfig.build.json",
"build:sol": "npx hardhat compile",
"build:declarations": "shx cp typechain/*.d.ts dist/typechain",
"hardhat": "npx hardhat",
"task:accounts": "npx hardhat accounts",
"task:deploy": "npx hardhat deploy",
"task:deploy-and-configure": "npx hardhat deploy-and-configure",
"task:mint-noun": "npx hardhat mint-noun",
"task:populate-descriptor": "npx hardhat populate-descriptor",
"task:run-local": "npx hardhat run-local",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"prepare": "yarn build"
},
"devDependencies": {
"solidity-coverage": "0.7.21",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"@openzeppelin/hardhat-upgrades": "^1.8.2",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/express": "^4.17.11",
"@types/prompt": "^1.1.0",
"base64-sol": "^1.0.1",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.9.7",
"hardhat-abi-exporter": "^2.9.0",
"hardhat-gas-reporter": "^1.0.8",
"prettier-plugin-solidity": "^1.0.0-beta.12",
"prompt": "^1.1.0",
"shx": "^0.3.3",
"ts-node": "^10.0.0",
"typechain": "^8.0.0"
},
"dependencies": {
"ethers": "^5.6.8"
}
}