-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.02 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
{
"name": "remix-cloudflare-chat-demo",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"deploy": "pnpm run deploy:durable-objects && pnpm run deploy:remix",
"deploy:durable-objects": "wrangler deploy ./build/client --config wrangler.durable-objects.toml",
"deploy:remix": "wrangler pages deploy ./build/client",
"dev": "concurrently \"pnpm:dev:*\"",
"dev:durable-objects": "wrangler dev --config wrangler.durable-objects.toml --port 8788",
"dev:remix": "wait-on http://localhost:8788 && remix vite:dev",
"format": "prettier --ignore-unknown --write .",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "concurrently \"pnpm:dev:durable-objects\" \"pnpm:start:remix\"",
"start:remix": "wait-on http://localhost:8788 && wrangler pages dev ./build/client --port 5173",
"typecheck": "tsc"
},
"dependencies": {
"@remix-run/cloudflare": "2.9.2",
"@remix-run/cloudflare-pages": "2.9.2",
"@remix-run/react": "2.9.2",
"isbot": "^5.1.7",
"miniflare": "^3.20240512.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240512.0",
"@remix-run/dev": "2.9.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"node-fetch": "^3.3.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2",
"wait-on": "^7.2.0",
"wrangler": "^3.57.1"
},
"engines": {
"node": ">=20.0.0"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"useTabs": true
},
"pnpm": {
"patchedDependencies": {
"@remix-run/[email protected]": "patches/@[email protected]"
}
}
}