-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.77 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.77 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
{
"name": "thesis-management",
"version": "4.9.1",
"description": "Management of the Thesis Lifecycle in Universities",
"private": true,
"license": "MIT",
"author": {
"name": "Stephan Krusche",
"email": "krusche@tum.de",
"url": "https://aet.cit.tum.de/krusche"
},
"cacheDirectories": [
"node_modules"
],
"main": "src/index.tsx",
"sideEffects": false,
"packageManager": "npm@11.5.1",
"engines": {
"node": ">=24.7.0",
"npm": ">=11.5.0"
},
"scripts": {
"build": "webpack --env NODE_ENV=production",
"check-bundle-size": "webpack --env NODE_ENV=production --env BUNDLE_SIZE=true",
"check-build-speed": "BUILD_SPEED=true webpack --env NODE_ENV=production",
"dev": "webpack serve --open --env NODE_ENV=development",
"postinstall": "patch-package",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"prettier:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier:write": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"update": "ncu -i --format group",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:headed": "playwright test --headed",
"prepare": "cd .. && husky client/.husky"
},
"overrides": {
"ajv": "8.18.0",
"minimatch": "10.2.1",
"fork-ts-checker-webpack-plugin": {
"schema-utils": "4.3.3"
}
},
"dependencies": {
"@mantine/carousel": "8.3.15",
"@mantine/core": "8.3.15",
"@mantine/dates": "8.3.15",
"@mantine/dropzone": "8.3.15",
"@mantine/form": "8.3.15",
"@mantine/hooks": "8.3.15",
"@mantine/notifications": "8.3.15",
"@mantine/tiptap": "8.3.15",
"@phosphor-icons/react": "2.1.10",
"@tiptap/extension-highlight": "3.20.0",
"@tiptap/extension-subscript": "3.20.0",
"@tiptap/extension-superscript": "3.20.0",
"@tiptap/extension-text-align": "3.20.0",
"@tiptap/extension-text-style": "3.20.0",
"@tiptap/extension-underline": "3.20.0",
"@tiptap/starter-kit": "3.20.0",
"@types/dompurify": "3.2.0",
"dompurify": "3.3.1",
"embla-carousel": "8.6.0",
"embla-carousel-react": "8.6.0",
"i18n-iso-countries": "7.14.0",
"jszip": "3.10.1",
"jwt-decode": "4.0.0",
"keycloak-js": "26.2.3",
"mantine-datatable": "8.3.13",
"react": "19.2.4",
"react-avatar-editor": "14.0.0",
"react-dom": "19.2.4",
"react-router": "7.13.0"
},
"devDependencies": {
"@eslint/compat": "2.0.2",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.3",
"@playwright/test": "1.58.2",
"@types/react": "19.2.14",
"@types/react-avatar-editor": "13.0.4",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.56.0",
"@typescript-eslint/parser": "8.56.0",
"clean-webpack-plugin": "4.0.0",
"compression-webpack-plugin": "11.1.0",
"copy-webpack-plugin": "13.0.1",
"css-loader": "7.1.4",
"css-minimizer-webpack-plugin": "7.0.4",
"eslint": "10.0.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"fork-ts-checker-webpack-plugin": "9.1.0",
"globals": "17.3.0",
"html-webpack-plugin": "5.6.6",
"husky": "9.1.7",
"mini-css-extract-plugin": "2.10.0",
"patch-package": "8.0.1",
"postcss": "8.5.6",
"postcss-loader": "8.2.1",
"postcss-preset-mantine": "1.18.0",
"prettier": "3.8.1",
"speed-measure-webpack-plugin": "1.5.0",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.3.16",
"ts-loader": "9.5.4",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-plugin-css-modules": "5.2.0",
"webpack": "5.105.2",
"webpack-bundle-analyzer": "5.2.0",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.3",
"webpackbar": "7.0.0"
}
}