-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.21 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
{
"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",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"eslint": "^8.48.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"tsconfig": "*",
"turbo": "latest"
},
"name": "zora-protocol",
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"docs",
"packages/*"
],
"nohoist": [
"**/@openzeppelin/**",
"**/@zoralabs/*",
"**/ds-test",
"**/erc721a-upgradeable",
"**/forge-std",
"**/solady",
"**/solmate",
"**/vocs",
"**/yaml"
]
},
"lint-staged": {
"*.sol": "prettier --write",
"*.ts": "prettier --write",
"*.js": "prettier --write",
"*.mjs": "prettier --write",
"*.json": "prettier --write"
}
}