-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1 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
{
"name": "type-safe-paths-root",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:write": "turbo run format:write",
"format:check": "turbo run format:check",
"postinstall": "manypkg check",
"publish-packages": "npm run build && changeset version && changeset publish",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"examples/*",
"packages/*"
],
"dependencies": {
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@manypkg/cli": "^0.21.4",
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@tanstack/react-query": "^5.36.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"turbo": "latest",
"zod": "^3.23.5"
}
}