-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.75 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
{
"name": "web",
"version": "0.4.3",
"private": true,
"type": "module",
"author": "Exordos <info@genesis-corporation.ru>",
"description": "Exordos Workspace web app",
"license": "Apache-2.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"knip": "knip",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run test:coverage",
"audit:high": "npm audit --audit-level=high",
"licenses": "node ../../scripts/generate-licenses.mjs"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "2.0.1",
"@jitsi/react-sdk": "1.4.4",
"@noble/hashes": "2.2.0",
"@radix-ui/react-dialog": "1.1.16",
"@radix-ui/react-dropdown-menu": "2.1.17",
"@sentry/react": "10.57.0",
"buffer": "6.0.3",
"dompurify": "3.4.9",
"emoji-picker-react": "4.19.1",
"emojibase-data": "17.0.0",
"highlight.js": "11.11.1",
"marked": "18.0.5",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-rnd": "10.5.3",
"react-router-dom": "7.17.0",
"tinyexec": "1.2.4",
"zulip-js": "2.1.0",
"zustand": "5.0.14"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@tailwindcss/postcss": "4.3.0",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/http-proxy": "1.17.17",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react-swc": "4.3.1",
"@vitest/coverage-v8": "4.1.8",
"cross-env": "10.1.0",
"eslint": "10.4.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-promise": "7.3.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.2",
"eslint-plugin-sonarjs": "4.0.3",
"eslint-plugin-unicorn": "65.0.1",
"fake-indexeddb": "6.2.5",
"globals": "17.6.0",
"http-proxy": "1.18.1",
"jsdom": "29.1.1",
"knip": "6.16.1",
"license-checker": "25.0.1",
"msw": "2.14.6",
"postcss": "8.5.15",
"prettier": "3.8.4",
"prettier-plugin-tailwindcss": "0.8.0",
"tailwind-scrollbar": "4.0.2",
"tailwindcss": "4.3.0",
"typescript": "6.0.3",
"typescript-eslint": "8.61.0",
"vite": "8.0.16",
"vite-plugin-pwa": "1.3.0",
"vite-plugin-svgr": "5.2.0",
"vitest": "4.1.8"
}
}