forked from ourzora/zora-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.99 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
{
"name": "@zoralabs/protocol-deployments",
"version": "0.0.9",
"repository": "https://github.com/ourzora/zora-protocol",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/package/index.d.ts",
"type": "module",
"scripts": {
"dev": "FOUNDRY_PROFILE=dev forge test --watch -vvv",
"test": "FORK_TEST_CHAINS=mainnet,goerli,optimism,optimism_goerli,zora,zora_goerli,base_goerli,base,zora_sepolia forge test -vvv",
"build": "yarn wagmi && yarn bundle-configs && tsup",
"bundle-configs": "node script/bundle-chainConfigs.mjs && yarn prettier",
"prettier": "prettier --write 'package/**/*.ts' 'script/**/*.ts' 'wagmi.config.ts'",
"lint": "prettier --check 'package/**/*.ts' 'script/**/*.ts' 'wagmi.config.ts'",
"update-new-deployment-addresses": "node script/copy-deployed-contracts.mjs deploy",
"wagmi": "wagmi generate",
"unlink-protocol-rewards": "rm -rf ./node_modules/@zoralabs/protocol-rewards && cp -r ../protocol-rewards ./node_modules/@zoralabs/protocol-rewards",
"unlink-1155": "rm -rf ./node_modules/@zoralabs/zora-1155-contracts && cp -r ../1155-contracts ./node_modules/@zoralabs/zora-1155-contracts",
"unlink-contracts": "yarn unlink-protocol-rewards && yarn unlink-1155",
"link-contracts": "rm -rf ./node_modules && cd .. && yarn"
},
"dependencies": {
"@zoralabs/zora-1155-contracts": "*",
"ds-test": "https://github.com/dapphub/ds-test#cd98eff28324bfac652e63a239a60632a761790b",
"forge-std": "https://github.com/foundry-rs/forge-std#705263c95892a906d7af65f0f73ce8a4a0c80b80",
"solmate": "^6.1.0"
},
"devDependencies": {
"@turnkey/api-key-stamper": "^0.1.1",
"@turnkey/http": "^1.2.0",
"@turnkey/viem": "^0.2.4",
"@types/node": "^20.1.2",
"@wagmi/cli": "^1.0.1",
"es-main": "^1.2.0",
"glob": "^10.2.2",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solady": "^0.0.132",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"zoralabs-tsconfig": "*",
"typescript": "^5.2.2"
}
}