-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.31 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "t3-videochat-app",
"version": "0.1.0",
"private": true,
"scripts": {
"build:1-next": "cross-env NODE_ENV=production next build",
"build:2-server": "tsc --project tsconfig.server.json",
"build": "run-s build:*",
"dev": "run-p dev:*",
"dev:next": "cross-env NODE_ENV=development NODE_OPTIONS=\"--inspect\" next dev",
"dev:wss": "cross-env PORT=3001 NODE_ENV=development tsx watch src/server/api/wsDevServer.ts --tsconfig tsconfig.server.json ",
"generate": "prisma generate",
"lint": "next lint",
"start": "cross-env NODE_ENV=production node dist/server/api/prodServer.js",
"format": "prettier -w \"src/**/*.(ts|tsx|scss)\"",
"test": "vitest"
},
"dependencies": {
"@hookform/resolvers": "^2.9.11",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "5.2.0",
"@tanstack/react-query": "^4.20.2",
"@trpc/client": "^10.9.0",
"@trpc/next": "^10.9.0",
"@trpc/react-query": "^10.9.0",
"@trpc/server": "^10.9.0",
"bcrypt": "^5.1.0",
"class-variance-authority": "^0.7.0",
"jsonwebtoken": "^9.0.2",
"next": "13.1.6",
"next-auth": "^4.19.0",
"nodemailer": "^6.9.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.1",
"react-icons": "^4.7.1",
"sharp": "^0.32.6",
"simple-peer": "^9.11.1",
"superjson": "1.9.1",
"tailwind-merge": "^1.14.0",
"ws": "^8.12.1",
"zod": "^3.20.2"
},
"devDependencies": {
"@tailwindcss/container-queries": "^0.1.0",
"@tailwindcss/forms": "^0.5.3",
"@types/bcrypt": "^5.0.0",
"@types/eslint": "^8.21.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.11.18",
"@types/nodemailer": "^6.4.10",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/simple-peer": "^9.11.5",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"autoprefixer": "^10.4.7",
"cross-env": "^7.0.3",
"eslint": "^8.30.0",
"eslint-config-next": "13.1.6",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"prisma": "5.2.0",
"sass": "^1.58.3",
"tailwindcss": "^3.2.0",
"tailwindcss-logical": "^3.0.0",
"ts-to-zod": "^3.1.3",
"tsx": "^3.12.3",
"typescript": "^5.1.6",
"vitest": "^0.34.6"
},
"ct3aMetadata": {
"initVersion": "7.5.5"
}
}