This repository was archived by the owner on Mar 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.59 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.59 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
{
"name": "jitsi-moderator",
"version": "0.1.0",
"private": false,
"homepage": "https://diggsweden.github.io/jitsi-moderator",
"dependencies": {
"@jitsi/react-sdk": "^1.3.0",
"@vitejs/plugin-react-swc": "^3.4.0",
"i18next": "^23.2.6",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.1",
"react-router-dom": "^6.16.0",
"styled-components": "^6.0.0-rc.3",
"typescript": "^4.4.2",
"vite": "^4.4.11",
"vite-plugin-svgr": "^4.1.0",
"vite-tsconfig-paths": "^4.2.1"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage --watch=false",
"lint": "eslint src/**/*.ts{,x}",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"indent": [
"error",
"tab"
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@swc/plugin-styled-components": "^1.5.96",
"@types/jest": "^29.5.5",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitest/coverage-v8": "^0.34.6",
"axe-core": "^4.8.2",
"eslint": "^8.51.0",
"eslint-config-react-app": "^7.0.1",
"gh-pages": "^6.0.0",
"jsdom": "^22.1.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.34.6"
}
}