-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "@zoralabs/nft-drop-contracts",
"version": "1.0.1",
"description": "ZORA NFT Drops Contracts",
"author": "ZORA",
"license": "MIT",
"private": false,
"type": "module",
"files": [
"typechain",
"contracts",
"deployments",
"dist/artifacts/*",
"dist/typechain/*"
],
"scripts": {
"test": "forge test",
"generate-merkle-test-file": "node scripts/merkle-test.mjs",
"clean": "rm -rf ./dist/",
"typechain": "yarn run clean && yarn run build && typechain --target=ethers-v5 'dist/artifacts/*/*[!.metadata].json' --out-dir dist/typechain-src && tsc",
"prepack": "yarn run typechain",
"deploy": "node scripts/deploy.mjs",
"build": "forge build"
},
"devDependencies": {
"dotenv": "^10.0.0",
"ejs": "^3.1.7",
"keccak256": "^1.0.6",
"merkletreejs": "0.2.31",
"isomorphic-fetch": "^3.0.0",
"es-main": "^1.0.2"
},
"dependencies": {
"@dotenv/cli": "^2.2.2",
"@typechain/ethers-v5": "10.0.0",
"ethers": "^5.6.8",
"typechain": "8.0.0",
"typescript": "4.6.3"
}
}