-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
50 lines (50 loc) · 1.29 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
{
"private": true,
"repository": "[email protected]:ourzora/zora-protocol.git",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"dev": "turbo run dev",
"docs:preview": "pnpm run --filter docs preview",
"update-version": "changeset version && pnpm docs:copy-changelogs && turbo run update-contract-version",
"docs:copy-changelogs": "pnpm --filter=docs copy-changelog",
"lint": "turbo run lint",
"format": "turbo run format",
"release": "turbo run build && changeset publish",
"changesets": "changesets",
"prepare": "husky install",
"run-lint-staged": "lint-staged"
},
"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",
"tsx": "^4.19.0",
"turbo": "^2.0.9"
},
"name": "zora-protocol",
"lint-staged": {
"*.sol": "prettier --write",
"*.ts": "prettier --write",
"*.js": "prettier --write",
"*.mjs": "prettier --write",
"*.json": "prettier --write"
},
"packageManager": "[email protected]",
"ignore": [
"*.template.sol"
],
"engines": {
"node": ">=16",
"pnpm": ">=3"
},
"pnpm": {
"overrides": {
"viem": "^2.21.21"
}
}
}