-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.62 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
52
53
54
55
56
{
"name": "@portabletext/editor-root",
"private": true,
"scripts": {
"build": "turbo build",
"build:editor": "turbo build --filter=@portabletext/editor...",
"build:patches": "turbo build --filter=@portabletext/patches...",
"build:playground": "turbo build --filter=playground...",
"check:format": "prettier . --check",
"check:lint": "turbo check:lint",
"check:types": "turbo check:types",
"clean": "turbo clean && del .turbo && del node_modules",
"dev": "turbo dev",
"dev:editor": "turbo dev --filter=@portabletext/editor",
"dev:playground": "turbo dev --filter=playground...",
"dev:example-basic": "turbo dev --filter=example-basic...",
"format": "prettier --cache --write .",
"format:staged": "pretty-quick --staged",
"postinstall": "husky",
"lint:fix": "turbo lint:fix",
"test": "turbo test",
"test:watch": "turbo test:watch"
},
"lint-staged": {
"*": [
"pnpm format:staged"
]
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@playwright/test": "1.48.2",
"@sanity/prettier-config": "^1.0.3",
"del-cli": "^6.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"prettier-plugin-gherkin": "^3.1.0",
"pretty-quick": "^4.0.0",
"turbo": "^2.2.3"
},
"packageManager": "pnpm@9.12.3",
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom",
"react-is"
]
},
"overrides": {
"@portabletext/editor": "workspace:*",
"@portabletext/patches": "workspace:*"
}
}
}