-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.44 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
{
"name": "@matrix-widget-toolkit/example-widget-mui",
"version": "1.0.0",
"description": "An example that showcases the features of the Matrix Widget Toolkit.",
"author": "Nordeck IT + Consulting GmbH",
"license": "Apache-2.0",
"private": true,
"type": "module",
"dependencies": {
"@matrix-widget-toolkit/api": "5.0.3",
"@matrix-widget-toolkit/mui": "2.2.1",
"@matrix-widget-toolkit/react": "2.1.1",
"@mui/icons-material": "^6.5.0",
"@mui/material": "^6.5.0",
"@reduxjs/toolkit": "^2.12.0",
"i18next": "^25.8.20",
"i18next-chained-backend": "^4.6.3",
"i18next-http-backend": "^3.0.6",
"joi": "^17.13.3",
"matrix-widget-api": "^1.18.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.7.4",
"react-redux": "^9.2.0",
"react-router-dom": "^7.12.0",
"react-use": "^17.6.0",
"rxjs": "^7.8.2"
},
"scripts": {
"dev": "vite",
"dev:https": "VITE_DEV_SSL=true vite",
"preview": "vite preview",
"preview:https": "VITE_DEV_SSL=true vite preview",
"lint": "eslint .",
"tsc": "tsc",
"build": "tsc && vite build",
"test": "echo \"Tests have to run from root project\"",
"depcheck": "depcheck --ignores=@types/node,@vitest/coverage-v8,lodash,lodash-es,@types/lodash-es --ignore-dirs=build",
"translate": "i18next-cli extract --sync-primary",
"check-api-report": "echo \"Nothing to report\"",
"generate-api-report": "echo \"Nothing to report\"",
"clean": "yarn run clean:cache && yarn run clean:build",
"clean:cache": "rm -rf node_modules/.vite",
"clean:build": "rm -rf build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@matrix-widget-toolkit/testing": "4.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.4",
"@types/node": "22.19.21",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7",
"@vitejs/plugin-basic-ssl": "2.1.4",
"@vitejs/plugin-react-swc": "4.2.3",
"@vitest/coverage-v8": "4.0.18",
"axe-core": "4.11.4",
"happy-dom": "20.8.9",
"i18next-cli": "1.47.12",
"msw": "2.12.14",
"typescript": "5.9.3",
"vite": "7.3.5",
"vitest": "4.1.0"
}
}