-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 3.12 KB
/
package.json
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
{
"name": "thesis-management",
"version": "3.0.7",
"description": "Management of the Thesis Lifecycle in Universities",
"private": true,
"license": "MIT",
"author": {
"name": "Stephan Krusche",
"email": "[email protected]",
"url": "https://ase.cit.tum.de/krusche"
},
"cacheDirectories": [
"node_modules"
],
"main": "src/index.tsx",
"sideEffects": false,
"packageManager": "[email protected]",
"engines": {
"node": ">=22.10.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",
"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"
},
"dependencies": {
"@mantine/core": "7.17.0",
"@mantine/dates": "7.17.0",
"@mantine/dropzone": "7.17.0",
"@mantine/form": "7.17.0",
"@mantine/hooks": "7.17.0",
"@mantine/notifications": "7.17.0",
"@mantine/tiptap": "7.17.0",
"@tiptap/extension-highlight": "2.11.5",
"@tiptap/extension-subscript": "2.11.5",
"@tiptap/extension-superscript": "2.11.5",
"@tiptap/extension-text-align": "2.11.5",
"@tiptap/extension-underline": "2.11.5",
"@tiptap/starter-kit": "2.11.5",
"i18n-iso-countries": "7.14.0",
"jszip": "3.10.1",
"jwt-decode": "4.0.0",
"keycloak-js": "25.0.6",
"mantine-datatable": "7.15.1",
"phosphor-react": "1.4.1",
"react": "18.3.1",
"react-avatar-editor": "13.0.2",
"react-dom": "18.3.1",
"react-router": "7.2.0"
},
"devDependencies": {
"@eslint/compat": "1.2.6",
"@eslint/eslintrc": "3.3.0",
"@eslint/js": "9.20.0",
"@types/react": "18.3.18",
"@types/react-avatar-editor": "13.0.3",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "8.24.1",
"@typescript-eslint/parser": "8.24.1",
"clean-webpack-plugin": "4.0.0",
"compression-webpack-plugin": "11.1.0",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"css-minimizer-webpack-plugin": "7.0.0",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.37.4",
"fork-ts-checker-webpack-plugin": "9.0.2",
"globals": "15.15.0",
"html-webpack-plugin": "5.6.3",
"mini-css-extract-plugin": "2.9.2",
"postcss": "8.5.3",
"postcss-loader": "8.1.1",
"postcss-preset-mantine": "1.17.0",
"prettier": "3.5.1",
"speed-measure-webpack-plugin": "1.5.0",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.3.11",
"ts-loader": "9.5.2",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"typescript-plugin-css-modules": "5.1.0",
"webpack": "5.98.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0",
"webpackbar": "7.0.0"
}
}