-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
179 lines (179 loc) · 6.61 KB
/
package.json
File metadata and controls
179 lines (179 loc) · 6.61 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
"name": "common",
"version": "0.0.4",
"private": true,
"license": "SEE LICENSE in /LICENSE",
"type": "module",
"scripts": {
"build": "turbo build",
"check": "pnpm check-migrations",
"check-migrations": "tsx scripts/migrationsCheck.ts",
"clean": "find . \\( -name \"node_modules\" -o -name \"build\" -o -name \"dist\" -o -name \".next\" -o -name \".turbo\" \\) -type d -prune -exec rm -rf '{}' +",
"clean:next": "find . \\( -name \".next\" \\) -type d -prune -exec rm -rf '{}' +",
"cloc": "pnpx cloc . --exclude-ext=yaml,svg,json,md,txt,mdx --exclude-dir=.turbo,.next,node_modules,.storybook,.git,.vscode --vcs=git",
"deps:clean": "tsx scripts/depCheck.ts --clean && pnpm prettier --write **/package.json --write",
"deps:override": "tsx scripts/depCheck.ts --multiuse && pnpm prettier --write **/package.json --write",
"deps:viz": "node ./scripts/visualize-deps.mjs",
"dev": "turbo dev",
"dev:e2e": "cross-env E2E=true NEXT_PUBLIC_SUPABASE_URL=http://127.0.0.1:56321 DATABASE_URL=postgresql://postgres:postgres@127.0.0.1:56322/postgres S3_ASSET_ROOT=http://127.0.0.1:56321/storage/v1/object/public/assets TIPTAP_SECRET=e2e NEXT_PUBLIC_TIPTAP_APP_ID=e2e turbo dev:e2e",
"dev:test": "dotenv -e .env.test -o -- turbo dev",
"e2e": "pnpm -C ./tests/e2e e2e",
"e2e:ui": "pnpm -C ./tests/e2e e2e:ui",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:changes": "git diff --name-only --diff-filter=ACM | xargs pnpx prettier --write",
"format:check": "turbo format:check",
"test": "turbo test",
"tmux": "bash scripts/tmux.sh",
"typecheck": "turbo typecheck",
"w:api": "pnpm -C ./services/api",
"w:app": "pnpm -C ./apps/app",
"w:db": "pnpm -C ./services/db",
"w:e2e": "pnpm -C ./tests/e2e",
"w:emails": "pnpm -C ./services/emails",
"w:realtime": "pnpm -C ./services/realtime",
"w:supabase": "pnpm -C ./services/supabase",
"w:translation": "pnpm -C ./services/translation",
"w:ui": "pnpm -C ./packages/ui",
"w:workflows": "pnpm -C ./services/workflows"
},
"dependencies": {
"prettier-plugin-sql": "^0.18.1"
},
"devDependencies": {
"@iconify/json": "2.2.311",
"@op/core": "workspace:*",
"@op/typescript-config": "workspace:*",
"@react-three/drei": "^10.0.4",
"@react-three/fiber": "^9.1.0",
"@supabase/ssr": "0.5.2",
"@supabase/supabase-js": "^2.49.3",
"@tailwindcss/cli": "4.1.18",
"@tanstack/query-sync-storage-persister": "5.66.11",
"@tanstack/react-query": "5.66.11",
"@tanstack/react-query-devtools": "5.66.11",
"@tanstack/react-query-persist-client": "5.66.11",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@trpc/client": "11.6.0",
"@trpc/next": "11.6.0",
"@trpc/react-query": "11.6.0",
"@trpc/server": "11.6.0",
"@types/d3-scale": "^4.0.9",
"@types/d3-selection": "^3.0.11",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.15",
"@types/node": "^22.13.5",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/three": "^0.174.0",
"@typescript/native-preview": "7.0.0-dev.20251214.1",
"@xyflow/react": "^12.5.2",
"ai": "^4.2.2",
"concurrently": "^9.1.2",
"cookie": "^1.0.2",
"cross-env": "^7.0.3",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"depcheck": "^1.4.7",
"dotenv": "^16.4.7",
"dotenv-cli": "^11.0.0",
"immer": "^10.1.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"lucide-react": "^0.476.0",
"motion": "12.4.7",
"nanoid": "5.1.2",
"next": "catalog:",
"open": "^10.1.0",
"postcss": "^8.5.3",
"postgres": "^3.4.5",
"prettier": "^3.5.2",
"prettier-plugin-packagejson": "^2.5.9",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^19.0.1",
"react-aria": "^3.37.0",
"react-aria-components": "^1.6.0",
"react-dom": "^19.0.1",
"react-markdown": "^10.0.0",
"react-resizable-panels": "^2.1.7",
"server-only": "^0.0.1",
"sharp": "^0.33.5",
"sonner": "^1.7.1",
"spacetime": "^7.7.0",
"supabase": "2.71.0",
"superjson": "^2.2.2",
"tailwind-variants": "3.2.2",
"tailwindcss": "4.1.18",
"three": "^0.174.0",
"tsx": "^4.19.3",
"turbo": "^2.4.4",
"typescript": "5.7.3",
"unplugin-icons": "22.1.0",
"use-error-boundary": "^2.0.6",
"zod": "catalog:",
"zustand": "^5.0.3"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=22"
},
"pnpm": {
"overrides": {
"@iconify/json": "$@iconify/json",
"@opentelemetry/sdk-metrics": "^2.2.0",
"@react-three/drei": "$@react-three/drei",
"@react-three/fiber": "$@react-three/fiber",
"@supabase/ssr": "$@supabase/ssr",
"@supabase/supabase-js": "$@supabase/supabase-js",
"@tanstack/query-sync-storage-persister": "$@tanstack/query-sync-storage-persister",
"@tanstack/react-query": "$@tanstack/react-query",
"@tanstack/react-query-persist-client": "$@tanstack/react-query-persist-client",
"@trpc/client": "$@trpc/client",
"@trpc/next": "$@trpc/next",
"@trpc/react-query": "$@trpc/react-query",
"@trpc/server": "$@trpc/server",
"@types/d3-scale": "$@types/d3-scale",
"@types/d3-selection": "$@types/d3-selection",
"@types/lodash": "$@types/lodash",
"@types/react": "$@types/react",
"@types/react-dom": "$@types/react-dom",
"@types/three": "$@types/three",
"@xyflow/react": "$@xyflow/react",
"ai": "$ai",
"concurrently": "$concurrently",
"cookie": "$cookie",
"cross-env": "$cross-env",
"d3-scale": "$d3-scale",
"d3-selection": "$d3-selection",
"dotenv": "$dotenv",
"immer": "$immer",
"js-yaml": "$js-yaml",
"lodash": "$lodash",
"lucide-react": "$lucide-react",
"motion": "$motion",
"postcss": "$postcss",
"postgres": "$postgres",
"prettier": "$prettier",
"prettier-plugin-tailwindcss": "$prettier-plugin-tailwindcss",
"react": "$react",
"react-aria": "$react-aria",
"react-aria-components": "$react-aria-components",
"react-dom": "$react-dom",
"react-markdown": "$react-markdown",
"react-resizable-panels": "$react-resizable-panels",
"server-only": "$server-only",
"sonner": "$sonner",
"spacetime": "$spacetime",
"supabase": "$supabase",
"superjson": "$superjson",
"tailwind-variants": "$tailwind-variants",
"three": "$three",
"tsx": "$tsx",
"turbo": "$turbo",
"typescript": "$typescript",
"undici": "5.27.1",
"unplugin-icons": "$unplugin-icons",
"use-error-boundary": "$use-error-boundary",
"zustand": "$zustand"
}
}
}