-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.14 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
{
"name": "byte-note",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build --webpack",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"pnpm eslint --fix"
],
"*.{json,md,mdx,css,scss,html}": [
"pnpm prettier --write"
]
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.19.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@tanstack/react-query": "^5.90.10",
"@tanstack/react-virtual": "^3.13.13",
"@trpc/client": "^11.7.1",
"@trpc/react-query": "^11.7.1",
"@trpc/server": "^11.7.1",
"@vercel/blob": "^2.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.554.0",
"next": "16.0.10",
"next-auth": "^4",
"next-pwa": "^5.6.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"slate": "^0.120.0",
"slate-dom": "^0.119.0",
"slate-history": "^0.113.1",
"slate-react": "^0.120.0",
"slate-yjs": "^3.2.0",
"sonner": "^2.0.7",
"superjson": "^2.2.5",
"tailwind-merge": "^3.4.0",
"y-websocket": "^3.0.0",
"yjs": "^13.6.27",
"zod": "^4.1.12",
"zustand": "^5.0.9"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-loader": "^10.0.0",
"baseline-browser-mapping": "^2.8.32",
"depcheck": "^1.4.7",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.0.10",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"prisma": "^6.19.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}