-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.36 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.36 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
124
125
126
{
"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/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/node": "^25.5.0",
"@types/papaparse": "^5.5.2",
"@types/react": "^19.2.14",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.1.0",
"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.0.1",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.4.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.8.1",
"react-test-renderer": "^19.2.4",
"jest-fixed-jsdom": "^0.0.11",
"ts-jest": "^29.4.6",
"ts-jest-mock-import-meta": "^1.3.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2",
"vite": "^8.0.3"
},
"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.95.2",
"@tiptap/extension-placeholder": "^3.21.0",
"@tiptap/react": "^3.21.0",
"@tiptap/starter-kit": "^3.21.0",
"dompurify": "^3.3.3",
"lodash": "^4.17.23",
"oidc-client-ts": "^3.5.0",
"papaparse": "^5.5.3",
"ra-core": "^5.14.4",
"ra-i18n-polyglot": "^5.14.4",
"ra-language-english": "^5.14.4",
"ra-language-french": "^5.14.4",
"react": "^19.2.4",
"react-admin": "^5.14.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.72.0",
"react-is": "^19.2.4",
"react-router": "^7.13.2",
"react-router-dom": "^7.13.2"
},
"scripts": {
"start": "vite serve",
"build": "vite build",
"lint": "eslint .",
"format": "prettier --write \"src/**/*\"",
"typecheck": "tsc --noEmit",
"fix": "yarn lint --fix",
"test": "yarn jest",
"test:watch": "yarn jest --watch",
"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"
]
}
}