-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.37 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
80
81
82
{
"name": "bubble-chat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "prisma generate",
"format:write": "npx prettier **/*.{js,mjs,cjs,ts,tsx,json} --write .",
"format:check": "npx prettier **/*.{js,mjs,cjs,ts,tsx,json} --check .",
"tsc": "tsc",
"vercel:dev": "vercel dev",
"vercel:deploy": "vercel deploy",
"vercel:deploy:prod": "vercel deploy --prod"
},
"dependencies": {
"@chakra-ui/react": "^2.6.0",
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.8",
"@fontsource/nunito": "^4.5.12",
"@fontsource/raleway": "^4.5.12",
"@fractalsoftware/random-avatar-generator": "^1.0.11",
"@prisma/client": "^4.13.0",
"@supabase/supabase-js": "^2.21.0",
"@t3-oss/env-nextjs": "^0.2.2",
"@tanstack/react-query": "^4.29.5",
"@trpc/client": "^10.23.0",
"@trpc/next": "^10.23.0",
"@trpc/react-query": "^10.23.0",
"@trpc/server": "^10.23.0",
"@twilio/conversations": "^2.4.0",
"crypto-js": "^4.1.1",
"emoji-mart": "5.5.2",
"framer-motion": "10.12.4",
"github-like-avatar-generator": "^1.1.10",
"give-me-an-avatar": "^1.0.0",
"jsonwebtoken": "^9.0.0",
"next": "13.3.1",
"next-auth": "^4.22.1",
"next-seo": "^6.0.0",
"phosphor-react": "^1.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-query": "^3.39.3",
"react-toastify": "^9.1.2",
"superjson": "^1.12.3",
"unique-names-generator": "4.7.1",
"uuid": "^9.0.0",
"zod": "^3.21.4",
"zustand": "4.3.7"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@chakra-ui/utils": "^2.0.14",
"@types/crypto-js": "^4.1.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^18.16.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.39.0",
"eslint-config-marsi": "1.2.1",
"eslint-config-next": "13.3.1",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "17.0.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.32.2",
"prisma": "^4.13.0",
"tslib": "^2.5.0",
"typescript": "5.0.4",
"vercel": "^27.4.0"
}
}