-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.42 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.42 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
{
"name": "next-example",
"private": true,
"scripts": {
"dev": "next dev --webpack --hostname \"${NEXT_EXAMPLE__SERVER__HOST:-0.0.0.0}\" --port \"${NEXT_EXAMPLE__SERVER__PORT:-3000}\"",
"run": "next start --hostname \"${NEXT_EXAMPLE__SERVER__HOST:-0.0.0.0}\" --port \"${NEXT_EXAMPLE__SERVER__PORT:-3000}\""
},
"browserslist": [
"defaults"
],
"overrides": {
"@swc/core": "1.15.5"
},
"dependencies": {
"@lingui/core": "~5.9",
"@lingui/react": "~5.9",
"@mantine/core": "~8.3",
"@mantine/dates": "~8.3",
"@mantine/form": "~8.3",
"@mantine/hooks": "~8.3",
"@mantine/notifications": "~8.3",
"@orpc/client": "~1.13",
"@orpc/contract": "~1.13",
"@orpc/server": "~1.13",
"@orpc/tanstack-query": "~1.13",
"@rsdoctor/webpack-plugin": "~1.5",
"@tanstack/react-query": "~5.90",
"@unhead/react": "~2.1",
"client-only": "~0.0",
"dayjs": "~1.11",
"es-toolkit": "~1.43",
"next": "16.1.5",
"react": "~19.2",
"react-dom": "~19.2",
"react-icons": "~5.5",
"server-only": "~0.0",
"use-deep-compare": "~1.3",
"valtio": "~2.3",
"zod": "~4.3",
"zod-config": "~1.4"
},
"devDependencies": {
"@eslint/config-helpers": "~0.5",
"@eslint/js": "~9.39",
"@hey-api/openapi-ts": "~0.93",
"@lingui/cli": "~5.9",
"@lingui/format-po": "~5.9",
"@lingui/loader": "~5.9",
"@lingui/swc-plugin": "5.11.0",
"@next/eslint-plugin-next": "16.1.5",
"@tanstack/eslint-plugin-query": "~5.91",
"@tanstack/react-query-devtools": "~5.91",
"@tsconfig/bases": "~1.0",
"@types/node": "~22.19",
"@types/react": "~19.2",
"@types/react-dom": "~19.2",
"eslint": "9.39.1",
"eslint-plugin-lingui": "~0.11",
"eslint-plugin-perfectionist": "~4.15",
"eslint-plugin-react": "~7.37",
"eslint-plugin-react-hooks": "~7.0",
"globals": "~16.5",
"postcss-preset-mantine": "~1.18",
"postcss-simple-vars": "~7.0",
"source-map-loader": "~5.0",
"stylelint": "~16.26",
"stylelint-config-alphabetical-order": "~1.0",
"stylelint-config-css-modules": "~4.5",
"stylelint-config-prettier-scss": "~1.0",
"stylelint-config-standard-scss": "~16.0",
"type-fest": "~5.3",
"typescript": "~5.9",
"typescript-eslint": "~8.49"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": "~10.9"
},
"runtime": {
"name": "node",
"version": "~22.20"
}
}
}