-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.97 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 3.97 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "verbara-web",
"private": true,
"version": "3.14.0",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . && npm run i18n:check",
"i18n:check": "node scripts/i18n-parity-check.mjs",
"generate:api-types": "node scripts/generate-api-types.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"e2e": "playwright test -c tests/e2e/playwright.config.ts",
"e2e:ui": "playwright test -c tests/e2e/playwright.config.ts --ui",
"e2e:headed": "playwright test -c tests/e2e/playwright.config.ts --headed",
"e2e:debug": "playwright test -c tests/e2e/playwright.config.ts --debug",
"prepare": "husky",
"build:webchat-sdk": "vite build --config vite.webchat-sdk.config.ts",
"build:webchat-embed": "vite build --config vite.webchat-embed.config.ts",
"build:webchat": "npm run build:webchat-sdk && npm run build:webchat-embed",
"build:all": "npm run build && npm run build:webchat",
"dev:webchat-demo": "vite preview --port 4173 --outDir public/webchat/embed"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"prettier --write"
],
"*.{json,md,yml,yaml,css}": [
"prettier --write"
]
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource-variable/geist": "^5.2.9",
"@hookform/resolvers": "^5.4.0",
"@microsoft/signalr": "^10.0.0",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.14.6",
"@wavesurfer/react": "^1.0.12",
"@xyflow/react": "^12.11.2",
"ag-grid-community": "^35.3.0",
"ag-grid-react": "^35.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.4.0",
"dompurify": "^3.4.12",
"html2canvas": "^1.4.1",
"i18next": "^26.3.6",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^4.0.0",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.8",
"libphonenumber-js": "^1.13.8",
"lucide-react": "^1.24.0",
"next-themes": "^0.4.6",
"prism-react-renderer": "^2.4.1",
"qrcode.react": "^4.2.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.81.0",
"react-i18next": "^17.0.9",
"react-is": "^19.2.7",
"react-router-dom": "^7.18.1",
"react-to-print": "^3.3.0",
"recharts": "^3.9.2",
"shadcn": "^4.11.0",
"sip.js": "^0.21.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"wavesurfer.js": "^7.12.10",
"web-vitals": "^5.3.0",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@eslint/js": "^10.0.0",
"@playwright/test": "^1.61.1",
"@sentry/react": "^10.62.0",
"@sentry/vite-plugin": "^5.3.0",
"@tailwindcss/vite": "^4.3.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"allure-playwright": "^3.10.0",
"eslint": "^10.7.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^16.4.0",
"msw": "^2.15.0",
"openapi-typescript": "^7.13.0",
"otpauth": "^9.5.1",
"otplib": "^13.4.1",
"prettier": "^3.8.4",
"tailwindcss": "^4.2.2",
"tsx": "^4.22.4",
"typescript": "~6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.4",
"vitest": "^4.1.10"
}
}