-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
38 lines (38 loc) · 926 Bytes
/
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
{
"private": true,
"repository": "[email protected]:ourzora/zora-protocol.git",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"dev": "turbo run dev",
"update-version": "changeset version && turbo run update-contract-version",
"lint": "turbo run lint",
"format": "turbo run format",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"tsconfig": "*",
"turbo": "latest",
"@changesets/cli": "^2.26.2"
},
"name": "zora-protocol",
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@openzeppelin/**",
"**/@zoralabs/*",
"**/ds-test",
"**/erc721a-upgradeable",
"**/forge-std",
"**/solady",
"**/solmate"
]
}
}