-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.87 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.87 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
{
"dependencies": {
"@reduxjs/toolkit": "^2.11.2",
"@zoom/probesdk": "1.0.4",
"@zoom/videosdk": "^2.4.5",
"emoji-picker-react": "^4.17.2",
"html2canvas": "^1.4.1",
"i18next": "^25.8.0",
"jspdf": "^4.2.1",
"jsrsasign": "^11.1.1",
"lodash-es": "^4.17.23",
"lucide-react": "^0.563.0",
"mitt": "^3.0.1",
"notistack": "^3.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.5.0",
"react-i18next": "^16.5.4",
"react-redux": "^9.2.0",
"react-select": "^5.10.2",
"react-tooltip": "^5.30.0",
"react-virtualized": "^9.22.6",
"recharts": "^3.7.0"
},
"devDependencies": {
"@commitlint/cz-commitlint": "^20.3.1",
"@eslint/js": "^9.39.2",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/line-clamp": "^0.4.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.2",
"@types/jsrsasign": "^10.5.15",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.2.14",
"@types/react-virtualized": "^9.22.3",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitejs/plugin-react-swc": "^4.2.2",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.23",
"axios": "^1.13.5",
"commitizen": "^4.3.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.2.0",
"husky": "^9.1.6",
"javascript-obfuscator": "^5.2.1",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.3",
"postcss-prefix-selector": "^2.1.1",
"postcss-scss": "^4.0.9",
"prettier": "^3.8.1",
"prettier-eslint": "^16.4.2",
"react-modal": "^3.16.3",
"regenerator-runtime": "^0.14.1",
"rollup-plugin-visualizer": "^6.0.5",
"sass": "^1.97.3",
"sass-loader": "^16.0.6",
"stylelint": "^17.0.0",
"stylelint-config-recommended-scss": "^17.0.0",
"stylelint-config-tailwindcss": "^1.0.1",
"stylelint-order": "^7.0.1",
"tailwindcss": "^3.4.17",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"uuid": "^13.0.0",
"vite": "^7.3.1",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^4.0.18"
},
"license": "MIT",
"author": "Zoom Communications",
"overrides": {
"lodash": "4.18.1",
"tmp": "0.2.4",
"minimatch": "9.0.9",
"dompurify": "3.3.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css,scss,md}": [
"prettier --write"
]
},
"name": "videosdk-ui-toolkit",
"private": true,
"scripts": {
"dev": "npm run copy && cross-env vite",
"build": "tsc && cross-env NODE_ENV=production vite build && npm run copydist && npm run lint",
"tgz": "npm run build && npm run pack",
"https": "npm run copy && cross-env HTTPS=true vite",
"copy": "rm -rf public/lib && cp -r node_modules/@zoom/videosdk/dist/lib public",
"copydist": "rm -rf videosdk-ui-toolkit/dist && cp -r distTmp videosdk-ui-toolkit/dist",
"pack": "cd videosdk-ui-toolkit && npm pack && mv *.tgz ../",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint --ext ts,tsx ./src --fix",
"lint:style": "stylelint **/*.{scss,css} --max-warnings 4000",
"visualizer": "cross-env NODE_ENV=development VITE_USE_VISUALIZER=true npm run build",
"docs": "typedoc --options typedoc.json",
"test:unit": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run"
},
"type": "module",
"version": "2.4.5-1"
}