-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·104 lines (104 loc) · 3.31 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
97
98
99
100
101
102
103
104
{
"name": "innohassle-website",
"version": "1.5.0",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite build && vite preview --port 3000 --host 0.0.0.0",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettify": "prettier --write .",
"prettier:check": "prettier --ignore-unknown --check .",
"lint-staged": "lint-staged",
"prepare": "husky",
"gen:api": "pnpm exec openapi-typescript --root-types --enum",
"release": "bumpp package.json",
"update-deps": "taze minor -wIrl"
},
"dependencies": {
"@eslint/js": "^9.11.1",
"@floating-ui/react": "^0.26.24",
"@fontsource-variable/rubik": "^5.1.0",
"@fontsource/fuzzy-bubbles": "^5.1.0",
"@fontsource/roboto": "^5.1.0",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/list": "^6.1.15",
"@fullcalendar/moment": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@iconify/json": "^2.2.248",
"@iconify/tailwind": "^1.1.3",
"@mdx-js/mdx": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@mdx-js/rollup": "^3.0.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-router": "^1.58.3",
"@tanstack/router-devtools": "^1.58.3",
"@tanstack/router-plugin": "^1.58.4",
"@types/mdx": "^2.0.13",
"@types/node": "^20.16.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vueuse/core": "^11.1.0",
"autoprefixer": "^10.4.20",
"bumpp": "^9.5.2",
"clsx": "^2.1.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.9.0",
"husky": "^9.1.6",
"ical.js": "^2.1.0",
"lint-staged": "^15.2.10",
"moment": "^2.30.1",
"openapi-fetch": "^0.12.2",
"openapi-typescript": "^7.4.1",
"openapi-typescript-helpers": "^0.0.13",
"pdfjs-dist": "4.4.168",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-helmet-async": "^2.0.5",
"react-markdown": "^9.0.1",
"react-pdf": "^9.1.0",
"remark-gfm": "^4.0.0",
"sass-embedded": "^1.79.4",
"tailwindcss": "^3.4.11",
"taze": "^0.16.9",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"usehooks-ts": "^3.1.0",
"veaury": "^2.5.1",
"vite": "^5.4.7",
"vite-plugin-minify": "^2.0.0",
"vite-plugin-mkcert": "^1.17.6",
"vite-plugin-pwa": "^0.20.5",
"vite-tsconfig-paths": "^5.0.1",
"vue": "^3.5.10",
"workbox-window": "^7.1.0",
"zod": "^3.23.8"
},
"lint-staged": {
"{src,public}/**/*.{js,ts,jsx,tsx,mdx|vue}": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"**/*.+(json|css|md|ya?ml|mdx)": "prettier --write --ignore-unknown"
}
}