-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "next-golden-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"patch": "next-ws-cli patch --yes",
"lint": "next lint",
"format": "prettier --write .",
"postprepare": "bun run patch"
},
"packageManager": "^[email protected]",
"dependencies": {
"@tanstack/react-query": "^5.51.23",
"@trpc/client": "^11.0.0-rc.477",
"@trpc/next": "^11.0.0-rc.477",
"@trpc/react-query": "^11.0.0-rc.477",
"@trpc/server": "^11.0.0-rc.477",
"next": "14.2.4",
"next-ws": "^1.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.77.3",
"superjson": "^2.2.1",
"ws": "^8.17.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.5.10",
"autoprefixer": "^10.4.20",
"eslint": "^9.8.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"million": "^3.1.11",
"next-ws-cli": "^1.0.1",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.9",
"typescript": "^5.4.5"
}
}