-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.37 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
{
"name": "client-home-v3",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:all": "sh scripts/build/build.sh",
"start": "next start",
"start:clean": "next build && next start",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
"lint": "biome check",
"format": "biome check --write",
"lint-staged": "lint-staged",
"prepare": "husky",
"tsc": "NODE_ENV=production tsc --noemit --skipLibCheck",
"ex": "tsx --tsconfig tsx.tsconfig.json --require dotenv/config --require tsconfig-paths/register",
"data-migrate": "pnpm ex scripts/data-migration",
"nuke": "pnpm ex scripts/nuke",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@assembly-js/app-bridge": "^1.1.0",
"@assembly-js/design-system": "^3.1.1",
"@assembly-js/node-sdk": "^3.19.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@sentry/nextjs": "^10",
"@supabase/supabase-js": "^2.94.1",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-query-devtools": "^5.91.3",
"@tiptap/core": "^3.29.2",
"@tiptap/extension-bubble-menu": "^3.29.2",
"@tiptap/extension-document": "3.29.2",
"@tiptap/extension-file-handler": "^3.29.2",
"@tiptap/extension-image": "^3.29.2",
"@tiptap/extension-link": "^3.29.2",
"@tiptap/extension-paragraph": "3.29.2",
"@tiptap/extension-placeholder": "^3.29.2",
"@tiptap/extension-table": "^3.29.2",
"@tiptap/extension-text": "3.29.2",
"@tiptap/extensions": "^3.29.2",
"@tiptap/pm": "^3.29.2",
"@tiptap/react": "^3.29.2",
"@tiptap/starter-kit": "^3.29.2",
"@tiptap/suggestion": "^3.29.2",
"@uiw/color-convert": "^2.9.5",
"@uiw/react-color-colorful": "^2.9.4",
"axios": "^1.13.4",
"bottleneck": "^2.19.5",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"drizzle-seed": "^0.3.1",
"drizzle-zod": "^0.8.3",
"http-status": "^2.1.0",
"import-in-the-middle": "^3.0.0",
"link-to-iframe": "1.0.8",
"lodash": "^4.17.23",
"next": "16.1.6",
"p-retry": "^7.1.1",
"postgres": "^3.4.8",
"react": "19.2.4",
"react-dom": "19.2.4",
"require-in-the-middle": "^8.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tippy.js": "^6.3.7",
"uuid": "^13.0.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@commitlint/types": "^20.4.0",
"@electric-sql/pglite": "^0.4.4",
"@playwright/test": "^1.58.2",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.18",
"@types/lodash": "^4.17.24",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vercel/blob": "^2.3.0",
"drizzle-kit": "^0.31.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tailwindcss": "^4.1.18",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": [
"biome check --write"
]
},
"packageManager": "pnpm@10.30.2+sha512.36cdc707e7b7940a988c9c1ecf88d084f8514b5c3f085f53a2e244c2921d3b2545bc20dd4ebe1fc245feec463bb298aecea7a63ed1f7680b877dc6379d8d0cb4"
}