-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "chat-app",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=18.15.0"
},
"scripts": {
"dev-wss": "tsx watch src/server/wssDevServer.ts",
"dev-next": "next dev",
"lint": "eslint --cache --ext \".js,.ts,.tsx\" --report-unused-disable-directives --report-unused-disable-directives src"
},
"prettier": {
"printWidth": 80,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@prisma/client": "^4.14.1",
"@t3-oss/env-nextjs": "^0.7.1",
"@tanstack/react-query": "^4.18.0",
"@trpc/client": "canary",
"@trpc/next": "canary",
"@trpc/react-query": "canary",
"@trpc/server": "canary",
"clsx": "^2.0.0",
"mongoose": "^8.0.3",
"next": "^14.0.1",
"next-auth": "^4.22.1",
"primeicons": "^6.0.1",
"primereact": "^10.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"superjson": "^1.12.4",
"tsx": "^4.0.0",
"ws": "^8.0.0",
"zod": "^3.0.0"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^4.18.0",
"@types/node": "^20.10.0",
"@types/react": "^18.2.33",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"autoprefixer": "^10.4.7",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.40.0",
"eslint-config-next": "^14.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.8.8",
"start-server-and-test": "^1.12.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "restricted"
}
}