-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.62 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 3.62 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "root",
"private": true,
"type": "module",
"engines": {
"node": "^24.0.0",
"pnpm": "^9.12.2"
},
"packageManager": "pnpm@9.12.2",
"scripts": {
"clean-dev": "pnpm clean && pnpm install && pnpm build && pnpm dev",
"clean-i": "pnpm clean && pnpm install",
"build": "turbo --filter=./packages/* build",
"monotest-build": "turbo --filter='@monotest/*' build",
"build-www": "turbo --filter www build",
"dev": "turbo --filter=./packages/* dev",
"dev-www": "turbo --filter www dev",
"test": "vitest",
"typecheck-packages": "pnpm run --parallel --filter=./packages/* typecheck",
"typecheck-www": "turbo --filter www typecheck",
"ts-watch": "pnpm typecheck-packages --watch",
"lint": "turbo lint",
"lint-fix": "turbo lint --continue -- --fix && manypkg fix && pnpm format-fix",
"format": "prettier \"**/*\" --ignore-unknown",
"format-fix": "pnpm format --write --list-different",
"lint-prune": "! ts-prune | grep -v \"used in module\" | grep -v rpc | grep -v observable | grep -v http | grep -v __fixtures__ | grep -v __generated__ | grep -v heyapi | grep -v 'openapi/test/routers' | grep -v 'openapi/test/scripts'",
"clean": "find . -name node_modules -o -name .turbo -o -name .next -o -name dist -o -name __generated__ -type d -prune -o -name '*.tsbuildinfo' | xargs rm -rf",
"prepublish": "pnpm build",
"prepack": "tsx scripts/version.ts",
"version": "tsx scripts/version.ts",
"link-all": "cd packages/server && cd ../server && pnpm link --global && cd ../client && pnpm link --global && cd ../react-query && pnpm link --global && cd ../next && pnpm link --global",
"commit-date": "git log -n 1 --date=format:'%Y-%m-%d-%H-%M-%S' --pretty=format:'%ad'",
"canary-preid": "echo \"$(pnpm --silent current-branch)-$(pnpm --silent commit-date)\"",
"current-branch": "echo \"$(git rev-parse --abbrev-ref HEAD)\" | sed -E 's/refs\\/heads\\///' | sed -E 's/\\W|_/-/g' | sed -e 's/\\//-/'",
"publish-canary": "lerna publish --force-publish --canary --preid alpha-$(pnpm --silent canary-preid) --dist-tag $(pnpm --silent current-branch)",
"publish-prerelease": "pnpm install && lerna publish prerelease --force-publish --dist-tag next --no-push && sleep 60 && git push --follow-tags",
"merge-main": "git checkout main && git pull && git checkout next && git pull && git checkout -b next-merge-$(date '+%Y-%m-%d--%H-%M') next && git merge --ff main"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@eslint/compat": "^2.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@manypkg/cli": "^0.22.0",
"@tanstack/intent": "^0.0.23",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.4.3",
"@types/event-source-polyfill": "^1.0.5",
"@types/node": "^22.13.5",
"@vitest/coverage-istanbul": "^4.0.18",
"@vitest/ui": "^4.0.18",
"concurrently": "^9.0.0",
"eslint": "^9.26.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "6.0.0-rc.1",
"eslint-plugin-unicorn": "63.0.0",
"event-source-polyfill": "^1.0.31",
"express": "^5.0.0",
"fast-glob": "^3.2.12",
"hash-sum": "^2.0.0",
"konn": "^0.7.0",
"lerna": "^9.0.0",
"npm-run-all2": "^8.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.7.0",
"superjson": "^1.12.4",
"ts-prune": "^0.10.3",
"tsx": "^4.19.3",
"turbo": "^2.5.4",
"typescript": "^5.9.2",
"typescript-eslint": "^8.31.1",
"vite": "^6.1.1",
"vitest": "^4.0.18",
"zod": "^4.2.1"
}
}