-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.91 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
{
"name": "sheriff-monorepo",
"private": true,
"scripts": {
"dev": "turbo watch build-watch start",
"build": "turbo run build",
"playground": "pnpm --filter=cli-playground exec create-config",
"playground:mimic-monorepo": "pnpm exec create-config --filter=cli-playground",
"webservices:deploy": "turbo run serve --filter=sheriff-webservices",
"preview-docs": "turbo run serve --filter=docs-website",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"publint": "turbo run publint --concurrency=1",
"are-the-types-wrong": "turbo run are-the-types-wrong",
"manypkg": "manypkg check",
"typesync": "turbo run typesync",
"typecheck": "turbo run typecheck",
"knip": "knip",
"validate-config": "turbo run validate-config",
"merge-checks": "turbo run publint manypkg typesync knip typecheck lint validate-config check-deduped-deps are-the-types-wrong",
"check-deduped-deps": "pnpm dedupe --check",
"clean": "turbo run clean && rm -rf .turbo",
"delete-node-modules": "pnpm exec rm -rf node_modules && pnpm -r exec rm -rf node_modules",
"nuke": "pnpm clean && pnpm delete-node-modules",
"reset-node-modules-and-lockfile": "pnpm delete-node-modules && pnpm exec rm -rf ./pnpm-lock.yaml && pnpm i",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=./packages/* && changeset publish"
},
"dependencies": {
"@changesets/cli": "2.27.9",
"@manypkg/cli": "^0.21.4",
"@sherifforg/create-config": "workspace:*",
"@turbo/gen": "^2.2.3",
"knip": "^5.25.1",
"prettier": "^3.3.2",
"turbo": "^2.2.3",
"typesync": "^0.13.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.10.0"
},
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"typescript"
],
"ignoreMissing": [
"vitest"
]
}
}
}