-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.7 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.7 KB
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": "geo-ai-shopify",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "shopify app dev",
"config:link": "shopify app config link",
"generate": "shopify app generate",
"deploy": "shopify app deploy",
"config:use": "shopify app config use",
"env": "shopify app env",
"start": "remix-serve ./build/server/index.js",
"docker-start": "npm run setup && npm run start",
"setup": "prisma generate && prisma migrate deploy",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"shopify": "shopify",
"prisma": "prisma",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@prisma/client": "^6.19.0",
"@remix-run/dev": "^2.17.4",
"@remix-run/node": "^2.17.4",
"@remix-run/react": "^2.17.4",
"@remix-run/serve": "^2.17.4",
"@shopify/app-bridge-react": "^4.2.10",
"@shopify/polaris": "^13.9.5",
"@shopify/shopify-app-remix": "^4.1.1",
"@shopify/shopify-app-session-storage-prisma": "^8.0.1",
"isbot": "^5.1.35",
"prisma": "^6.19.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite-tsconfig-paths": "^5.1.4"
},
"devDependencies": {
"@remix-run/eslint-config": "^2.17.4",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"eslint": "^8.57.0",
"fast-check": "^4.5.3",
"typescript": "^5.9.3",
"vite": "^6.0.0",
"vitest": "^3.2.4"
},
"workspaces": [
"extensions/*"
],
"trustedDependencies": [
"@shopify/plugin-cloudflare"
],
"resolutions": {
"undici": "6.13.0"
},
"overrides": {
"undici": "6.13.0"
},
"engines": {
"node": ">=20.0.0"
}
}