-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.51 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
{
"name": "checkcafe-web",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "bun gen-types:prod && remix vite:build",
"dev": "bun gen-types:prod && remix vite:dev",
"format": "prettier --write --ignore-path .gitignore .",
"gen-types": "openapi-typescript http://localhost:3000/openapi.json --output ./app/types/schema.d.ts",
"gen-types:prod": "openapi-typescript https://api.checkcafe.com/openapi.json --output ./app/types/schema.d.ts",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@conform-to/react": "^1.2.2",
"@conform-to/zod": "^1.2.2",
"@hookform/resolvers": "^3.9.1",
"@mapbox/mapbox-gl-geocoder": "^5.0.3",
"@mapbox/search-js-react": "^1.0.0-beta.24",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.3",
"@remix-run/node": "^2.13.1",
"@remix-run/react": "^2.13.1",
"@remix-run/serve": "^2.13.1",
"@types/mapbox-gl": "^3.4.0",
"@types/mapbox__mapbox-gl-geocoder": "^5.0.0",
"@uploadcare/react-uploader": "^1.1.0",
"@uploadcare/rest-client": "^6.14.2",
"@vercel/analytics": "^1.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"embla-carousel-autoplay": "^8.3.1",
"embla-carousel-react": "^8.3.1",
"isbot": "^4.4.0",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.453.0",
"mapbox-gl": "^3.7.0",
"next-themes": "^0.3.0",
"npm": "^10.9.2",
"openapi-typescript": "^7.4.3",
"oslo": "^1.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.1",
"react-icons": "^5.3.0",
"react-map-gl": "^7.1.7",
"remix-auth": "^3.7.0",
"remix-auth-form": "^1.5.0",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@remix-run/dev": "^2.13.1",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/pluralize": "^0.0.33",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"unplugin-auto-import": "^0.18.3",
"unplugin-icons": "^0.19.3",
"vite": "^5.4.10",
"vite-plugin-inspect": "^0.8.7",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
"node": ">=20.0.0"
}
}