forked from jacob-ebey/remix-cf-pages-template-hmr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 954 Bytes
/
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
{
"name": "remix-cf-pages-template-hmr",
"type": "module",
"scripts": {
"build": "remix build",
"predev": "remix build",
"dev": "concurrently \"npm:dev:*\"",
"dev:remix": "remix dev",
"dev:wrangler": "wrangler pages dev public --port 3000 -b ENVIRONMENT=development SESSION_SECRET=foobar PUBLIC_STOREFRONT_API_TOKEN=3b580e70970c4528da70c98e097c2fa0 PUBLIC_STOREFRONT_API_VERSION=2023-01 PUBLIC_STORE_DOMAIN=hydrogen-preview.myshopify.com"
},
"dependencies": {
"@remix-run/cloudflare": "1.12.0",
"@remix-run/react": "1.12.0",
"@shopify/hydrogen": "^2023.1.5",
"isbot": "3.6.6",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.18.0",
"@remix-run/dev": "1.12.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"concurrently": "7.6.0",
"dotenv": "^16.0.3",
"typescript": "4.9.5",
"wrangler": "2.11.0"
}
}