-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.24 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.24 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": "ketesa",
"version": "1.0.0",
"description": "Admin UI for Matrix servers, formerly Synapse Admin",
"keywords": [
"matrix",
"synapse",
"admin",
"homeserver",
"management",
"react",
"nodejs",
"dashboard",
"etkecc",
"docker"
],
"type": "module",
"author": "etke.cc",
"license": "Apache-2.0",
"homepage": "https://github.com/etkecc/ketesa#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/etkecc/ketesa.git"
},
"bugs": {
"url": "https://github.com/etkecc/ketesa/issues"
},
"funding": [
"https://github.com/sponsors/etkecc",
"https://liberapay.com/etkecc"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@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/lodash": "^4.17.24",
"@types/node": "^25.6.0",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.14",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.5.0",
"jsdom": "^29.0.2",
"prettier": "^3.8.3",
"react-test-renderer": "^19.2.5",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.9",
"vitest": "^4.1.4",
"vitest-axe": "^0.1.0"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@mui/utils": "^7.3.9",
"@tanstack/react-query": "^5.99.2",
"@tiptap/extension-placeholder": "^3.22.4",
"@tiptap/react": "^3.22.4",
"@tiptap/starter-kit": "^3.22.4",
"dompurify": "^3.4.0",
"lodash": "^4.18.1",
"oidc-client-ts": "^3.5.0",
"papaparse": "^5.5.3",
"ra-core": "^5.14.5",
"ra-i18n-polyglot": "^5.14.5",
"ra-language-english": "^5.14.5",
"ra-language-french": "^5.14.5",
"react": "^19.2.5",
"react-admin": "^5.14.5",
"react-dom": "^19.2.5",
"react-hook-form": "^7.72.1",
"react-is": "^19.2.5",
"react-router": "^7.14.1",
"react-router-dom": "^7.14.1"
},
"scripts": {
"start": "vite serve",
"build": "vite build",
"lint": "eslint .",
"format": "prettier --write \"src/**/*\"",
"typecheck": "tsc --noEmit",
"fix": "yarn lint --fix",
"test": "vitest run",
"test:watch": "vitest",
"update-api-docs": "ts-node docs/update-api-docs.ts"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "avoid"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}