This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.08 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
{
"type": "module",
"scripts": {
"routes": "remix-routes",
"build": "remix-routes && remix build",
"dev": "concurrently \"remix-routes -w\" \"yarn dev:node\"",
"prepare": "panda codegen && husky install",
"dev:node": "remix dev",
"start": "remix-serve build/index.js",
"typecheck": "tsc",
"graphql": "graphql-codegen --config codegen.ts",
"graphql:watch": "yarn codegen --watch",
"graphql:blog": "graphql-codegen --config blog-codegen.ts"
},
"dependencies": {
"@google-cloud/storage": "^7.6.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@hookform/resolvers": "^3.3.4",
"@react-google-maps/api": "^2.19.2",
"@react-oauth/google": "^0.12.1",
"@remix-run/express": "^2.2.0",
"@remix-run/node": "^2.2.0",
"@remix-run/react": "^2.2.0",
"@remix-run/serve": "^2.2.0",
"@remix-run/server-runtime": "^2.3.1",
"@remix-validated-form/with-zod": "^2.0.7",
"dotenv": "^16.3.1",
"downshift": "^8.2.3",
"express": "^4.18.2",
"graphql": "^16.8.1",
"isbot": "^3.7.0",
"luxon": "^3.4.3",
"markdown-to-jsx": "^7.4.0",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.1",
"react-icons": "^4.11.0",
"react-joyride": "^2.7.2",
"remeda": "^1.40.1",
"remix-hook-form": "^4.0.1",
"remix-params-helper": "^0.4.10",
"remix-routes": "^1.5.0",
"remix-utils": "^7.1.0",
"remix-validated-form": "^5.1.5",
"spin-delay": "^1.2.0",
"ts-pattern": "^5.0.5",
"zod": "^3.22.4",
"zod-form-data": "^2.0.2",
"zustand": "^4.4.6"
},
"devDependencies": {
"@biomejs/biome": "1.3.3",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typed-document-node": "^5.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@pandacss/dev": "^0.17.5",
"@remix-run/dev": "^2.2.0",
"@types/luxon": "^3.3.3",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"concurrently": "^8.2.2",
"husky": "^8.0.0",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}