-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.41 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "pnpm build:css && pnpm build:worker && pnpm build:remix",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/styles.css",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/styles.css",
"build:remix": "pnpm remix build",
"build:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --minify --bundle --format=esm --define:process.env.NODE_ENV='\"production\"'",
"dev": "npm-run-all -p dev:*",
"dev:remix": "cross-env NODE_ENV=development remix dev",
"dev:worker": "esbuild ./app/entry.worker.ts --outfile=./public/entry.worker.js --bundle --format=esm --define:process.env.NODE_ENV='\"development\"' --watch",
"download:schema": "apollo service:download --endpoint=http://localhost:8888/v2/graphql ./graphql-schema.json",
"clean:types": "npx ts-node ./scripts/fix-type-files.ts",
"generate:component": "npx ts-node ./scripts/create-component.ts",
"generate:graphql": "pnpm codegen && pnpm clean:types",
"codegen": "pnpm download:schema && apollo codegen:generate --outputFlat ./app/types/gql --localSchemaFile=./graphql-schema.json --target=typescript --tagName=gql",
"start": "pnpm build && cross-env NODE_ENV=production pnpm remix-serve build/index.js"
},
"dependencies": {
"@apollo/client": "^3.11.0",
"@esbuild/darwin-x64": "0.23.0",
"@hookform/resolvers": "^3.9.0",
"@remix-run/node": "^2.10.3",
"@remix-run/react": "^2.10.3",
"@remix-run/serve": "^2.10.3",
"@remix-run/server-runtime": "^2.10.3",
"@tailwindcss/line-clamp": "^0.4.4",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.14.11",
"@wry/context": "^0.7.4",
"@wry/equality": "^0.5.7",
"@wry/trie": "^0.5.0",
"apollo": "^2.34.0",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"dayjs": "^1.11.12",
"dexie": "^4.0.8",
"dexie-react-hooks": "^1.1.7",
"dompurify": "^3.1.6",
"dotenv": "^16.4.5",
"esbuild": "0.23.0",
"framer-motion": "^11.3.9",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6",
"html-react-parser": "^5.1.12",
"isbot": "^5.1.13",
"isomorphic-dompurify": "2.13.0",
"mapbox-gl": "^3.5.2",
"node-fetch": "^3.3.2",
"node-persist": "^4.0.2",
"npm-run-all": "^4.1.5",
"optimism": "^0.17.5",
"postcss": "^8.4.39",
"react": "^18.3.1",
"react-audio-player": "^0.17.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"react-hooks-form": "^2.0.1",
"react-icons": "^5.2.1",
"react-map-gl": "^7.1.7",
"react-player": "^2.16.0",
"react-toastify": "^10.0.5",
"remix": "^2.10.3",
"remix-auth": "^3.7.0",
"source-map-support": "^0.5.21",
"superstruct": "^2.0.2",
"symbol-observable": "^4.0.0",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.6",
"tailwindcss-animation-delay": "^2.0.1",
"tailwindcss-owl": "^2.0.0",
"ts-invariant": "^0.10.3",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"web-push": "^3.6.7",
"xml-js": "^1.6.11",
"zen-observable-ts": "^1.1.0"
},
"devDependencies": {
"@remix-run/dev": "^2.10.3",
"@remix-run/eslint-config": "^2.10.3",
"@types/node-persist": "^3.1.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^8.54.0",
"ts-node": "^10.9.2"
},
"engines": {
"node": "21.2.0"
}
}