This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
forked from trpc/trpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 4.03 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "root",
"private": true,
"engines": {
"node": "^18.0.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo --filter=\"@trpc/*\" build",
"build-www": "turbo --filter www build",
"dev": "turbo --filter=\"@trpc/*\" dev",
"dev-www": "turbo --filter www dev",
"test": "turbo --filter tests test",
"test-watch": "cd packages/tests && pnpm test-watch",
"lint": "eslint --ext \".js,.ts,.tsx\" --ignore-path .gitignore .",
"lint-fix": "pnpm lint --fix && manypkg fix",
"clean": "find . -name node_modules -o -name .turbo -o -name .next -o -name dist -type d -prune | xargs rm -rf",
"codegen:override-prisma": "tsx scripts/addPrismaOverrides.ts",
"codegen": "run-p codegen:*",
"prepublish": "pnpm build",
"postinstall": "pnpm codegen",
"prepack": "tsx scripts/postversion.ts",
"release": "changeset publish",
"version:canary": "changeset version --snapshot canary",
"release:canary": "changeset publish --tag canary",
"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') next && git merge main"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.1",
"@changesets/cli": "^2.17.0",
"@manypkg/cli": "^0.19.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@swc/core": "^1.3.3",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/node": "^18.7.20",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-only-tests": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-turbo": "^0.0.4",
"eslint-plugin-unicorn": "40.1.0",
"fast-glob": "^3.2.12",
"lerna": "^5.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rollup": "^2.79.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-multi-input": "^1.3.1",
"rollup-plugin-node-externals": "^5.0.0",
"rollup-plugin-swc3": "^0.7.0",
"rollup-plugin-typescript2": "^0.32.1",
"tsx": "^3.9.0",
"turbo": "^1.6.1",
"typescript": "^4.8.3"
},
"pnpm": {
"overrides": {
"@tanstack/react-query": "4.6.0",
"@examples/trpc-next-prisma-starter>@prisma/client": "https://registry.npmjs.com/@prisma/client/-/client-4.3.1.tgz?id=%40examples%2Ftrpc-next-prisma-starter",
"@examples/next-starter-sqlite>@prisma/client": "https://registry.npmjs.com/@prisma/client/-/client-4.3.1.tgz?id=%40examples%2Fnext-starter-sqlite",
"@examples/next-starter-websockets>@prisma/client": "https://registry.npmjs.com/@prisma/client/-/client-4.3.1.tgz?id=%40examples%2Fnext-starter-websockets",
"@examples/trpc-next-prisma-todomvc>@prisma/client": "https://registry.npmjs.com/@prisma/client/-/client-4.3.1.tgz?id=%40examples%2Ftrpc-next-prisma-todomvc",
"@examples/legacy-next-starter>@prisma/client": "https://registry.npmjs.com/@prisma/client/-/client-4.3.1.tgz?id=%40examples%2Flegacy-next-starter",
"@examples/interop-next-starter-websockets>@prisma/client": "https://registry.npmjs.com/@prisma/client/-/client-4.3.1.tgz?id=%40examples%2Finterop-next-starter-websockets",
"@examples/interop-todo-web>@prisma/client": "https://registry.npmjs.com/@prisma/client/-/client-4.3.1.tgz?id=%40examples%2Finterop-todo-web"
}
}
}