-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.04 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 4.04 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
{
"name": "codebloom-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "tsc -b --noEmit",
"vt": "vitest run",
"test": "pnpm run typecheck && pnpm run prettier && pnpm run lint && pnpm run build && pnpm run vt",
"fix": "pnpm run eslint:fix && pnpm run stylelint:fix && pnpm run prettier:fix",
"lint": "pnpm run eslint && pnpm run stylelint",
"generate": "openapi-typescript http://localhost:8080/v3/api-docs -o src/lib/api/types/schema.ts --properties-required-by-default --enum --make-paths-enum --dedupe-enums && prettier --write \"src/lib/api/types/schema.ts\"",
"generate:dev": "nodemon --watch ../ --ext java --exec \"pnpm run generate\"",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"stylelint": "stylelint '**/*.css'",
"stylelint:fix": "stylelint '**/*.css' --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"preview": "vite preview"
},
"dependencies": {
"@mantine/core": "^8.1.2",
"@mantine/dates": "^8.1.2",
"@mantine/form": "^8.1.2",
"@mantine/hooks": "^8.1.2",
"@mantine/notifications": "^8.1.2",
"@microsoft/fetch-event-source": "^2.0.1",
"@tabler/icons-react": "^3.30.0",
"@tanstack/react-query": "^5.64.2",
"@tanstack/react-query-devtools": "^5.64.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"immer": "^10.1.3",
"mantine-form-zod-resolver": "^1.3.0",
"motion": "^12.34.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"react-router": "^6.30.3",
"react-router-dom": "^6.30.3",
"react-shiki": "^0.9.1",
"type-fest": "github:tahminator/type-fest#main",
"use-debounce": "^10.0.4",
"use-immer": "^0.11.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@eslint/plugin-kit": ">=0.3.4",
"@tailwindcss/postcss": "^4.2.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/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-istanbul": "^4.0.18",
"@vitest/coverage-v8": "4.0.18",
"eslint": "^9.17.0",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-perfectionist": "^4.8.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"jsdom": "^27.4.0",
"msw": "^2.12.7",
"nodemon": "^3.1.14",
"openapi-typescript": "7.8.0",
"postcss": "^8.4.49",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.5.0",
"sass": "^1.83.1",
"stylelint": "^16.14.1",
"stylelint-config-recommended": "^15.0.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"tailwindcss": "^4.2.1",
"typescript": "~5.6.3",
"typescript-eslint": "^8.19.0",
"uuid": "^13.0.0",
"vite": ">=6.4.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.24.0",
"pnpm": {
"patchedDependencies": {
"openapi-typescript@7.8.0": "patches/openapi-typescript@7.8.0.patch"
},
"overrides": {
"brace-expansion@<2": "1.1.12",
"minimatch": ">=9.0.7",
"minimatch@<3.1.4": "3.1.4",
"@babel/helpers": ">=7.26.10",
"ajv@<6.14.0": "6.14.0",
"ajv@8": ">=8.18.0",
"@eslint/plugin-kit": ">=0.3.4"
}
}
}