-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.04 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
{
"name": "shopify-app-remix-cf",
"private": true,
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev --port 8788",
"start": "wrangler pages dev ./build/client",
"preview": "pnpm run build && wrangler pages dev --binding=SHOPIFY_APP_URL=https://localhost:8788",
"config:link": "shopify app config link",
"generate": "shopify app generate",
"deploy:app": "shopify app deploy",
"deploy:cf": "pnpm run build && wrangler pages deploy",
"deploy": "pnpm run deploy:app && pnpm run deploy:cf",
"config:use": "shopify app config use",
"env": "shopify app env",
"cf-typegen": "wrangler types",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"shopify": "shopify",
"graphql-codegen": "graphql-codegen",
"vite": "vite",
"wrangler": "wrangler"
},
"type": "module",
"engines": {
"node": ">=16.0.0 <22.0.0"
},
"dependencies": {
"@remix-run/cloudflare": "^2.9.2",
"@remix-run/cloudflare-pages": "^2.9.2",
"@remix-run/dev": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"@shopify/app-bridge-react": "^4.1.3",
"@shopify/polaris": "^12.0.0",
"@shopify/shopify-api": "^10.0.0",
"@shopify/shopify-app-remix": "^2.8.2",
"isbot": "^5.1.0",
"prisma": "^5.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite-tsconfig-paths": "^4.3.1"
},
"devDependencies": {
"@remix-run/eslint-config": "^2.7.1",
"@shopify/api-codegen-preset": "^0.0.7",
"@types/eslint": "^8.40.0",
"@types/node": "^20.6.3",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.4",
"typescript": "^5.2.2",
"vite": "^5.1.3",
"wrangler": "^3.57.0"
},
"workspaces": {
"packages": [
"extensions/*"
]
},
"trustedDependencies": [
"@shopify/plugin-cloudflare"
],
"resolutions": {
"undici": "6.13.0"
},
"overrides": {
"undici": "6.13.0"
},
"author": "dmytro"
}