-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.06 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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "chat360",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "dotenv -e .env.local -- next dev",
"dev:debug": "dotenv -e .env.local -- NODE_OPTIONS='--inspect' next dev",
"build": "NODE_ENV=production next build",
"start": "NODE_ENV=production next start",
"lint": "next lint",
"lint:strict": "eslint --max-warnings=0 .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:fix": "prettier --write --fix .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"check": "npm run format && npm run lint:strict && npm run typecheck",
"knip": "knip",
"knip:production": "knip --production",
"knip:fix": "knip --fix",
"check:all": "npm run check && npm run knip"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-toast": "^1.2.5",
"@supabase/supabase-js": "^2.47.16",
"@types/react-transition-group": "^4.4.12",
"@uidotdev/usehooks": "^2.4.1",
"agora-extension-ai-denoiser": "^1.1.0",
"agora-extension-vad": "^1.0.0-beta.2",
"agora-rtc-sdk-ng": "^4.23.1",
"agora-rte-extension": "^1.2.4",
"agora-token": "^2.0.3",
"async-mutex": "^0.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.18.0",
"lucide-react": "^0.472.0",
"next": "^15.1.5",
"onnxruntime-web": "^1.20.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"react-transition-group": "^4.4.5",
"rxjs": "^7.8.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@next/bundle-analyzer": "^15.1.6",
"@next/eslint-plugin-next": "^15.1.5",
"@svgr/webpack": "^8.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/lodash": "^4.17.14",
"@types/node": "22.10.7",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"autoprefixer": "^10.4.20",
"copy-webpack-plugin": "^12.0.2",
"dotenv": "^16.4.7",
"dotenv-cli": "^8.0.0",
"eslint": "9.18.0",
"eslint-config-next": "^15.1.5",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-perfectionist": "^4.7.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"jsdom": "^26.0.0",
"knip": "^5.42.2",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"prettier-plugin-tailwindcss": "^0.6.10",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "5.7.3"
}
}