-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.26 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
{
"name": "claude-code",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bun run --bun next dev",
"build": "bun run --bun next build",
"start": "bun run --bun next start",
"lint": "eslint",
"format": "oxfmt",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"@tiptap/pm": "^3.15.3",
"@tiptap/react": "^3.15.3",
"@tiptap/starter-kit": "^3.15.3",
"better-auth": "^1.4.15",
"isomorphic-dompurify": "^2.35.0",
"nanoid": "^5.1.5",
"next": "16.1.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"zod": "^4.3.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"jsdom": "^27.4.0",
"oxfmt": "^0.26.0",
"tailwindcss": "^4",
"typescript": "^5",
"vite-tsconfig-paths": "^6.0.4",
"vitest": "^4.0.17"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}