-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.69 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": "birdxplorer_viewer",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --max-warnings 0",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc --noEmit",
"orval": "orval",
"test": "vitest",
"test:run": "vitest run",
"check": "yarn build && yarn lint && yarn format:ci && yarn typecheck && yarn test:run"
},
"dependencies": {
"@conform-to/dom": "1.2.2",
"@conform-to/react": "1.2.2",
"@conform-to/zod": "1.2.2",
"@mantine/charts": "7.15.2",
"@mantine/core": "7.15.2",
"@mantine/dates": "7.15.2",
"@mantine/form": "7.15.2",
"@mantine/hooks": "7.15.2",
"@mantine/modals": "7.15.2",
"@remix-run/node": "2.16.0",
"@remix-run/react": "2.16.0",
"@remix-run/serve": "2.16.0",
"@tailwindcss/vite": "4.0.9",
"dayjs": "1.11.13",
"isbot": "4.1.0",
"ohash": "1.1.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"recharts": "2.15.0",
"ufo": "1.5.4",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.0",
"@eslint/js": "9.21.0",
"@faker-js/faker": "9.3.0",
"@iconify/json": "2.2.302",
"@remix-run/dev": "2.16.0",
"@svgr/core": "8.1.0",
"@svgr/plugin-jsx": "8.1.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/eslint-plugin-jsx-a11y": "6.10.0",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.20",
"eslint": "9.21.0",
"eslint-config-flat-gitignore": "2.1.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.19",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-typegen": "1.0.0",
"globals": "15.14.0",
"jiti": "2.4.2",
"jsdom": "26.0.0",
"msw": "2.7.0",
"orval": "7.3.0",
"pnpm": "10.5.2",
"postcss": "8.4.49",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "7.0.1",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "4.0.0",
"typescript": "5.7.2",
"typescript-eslint": "8.23.0",
"unplugin-icons": "22.0.0",
"vite": "5.4.11",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.7"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.5.2",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msw"
]
}
}