-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.42 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.42 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "beeclever-app-template",
"private": true,
"scripts": {
"build": "node scripts/build.mjs",
"build:remix": "remix vite:build",
"dev": "shopify app dev",
"config:link": "shopify app config link",
"generate": "shopify app generate",
"deploy": "pretoml process ./extensions && 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",
"graphql-codegen": "graphql-codegen",
"vite": "vite"
},
"type": "module",
"engines": {
"node": "^18.20 || ^20.10 || >=21.0.0"
},
"dependencies": {
"@prisma/client": "^5.19.0",
"@remix-run/dev": "^2.7.1",
"@remix-run/node": "^2.7.1",
"@remix-run/react": "^2.7.1",
"@remix-run/serve": "^2.7.1",
"@shopify/app-bridge-react": "^4.1.2",
"@shopify/discount-app-components": "^3.0.0",
"@shopify/polaris": "^12.0.0",
"@shopify/polaris-icons": "^9.2.0",
"@shopify/react-form": "^2.6.0",
"@shopify/shopify-api": "^11.0.0",
"@shopify/shopify-app-remix": "^3.0.0",
"@shopify/shopify-app-session-storage-prisma": "^5.0.0",
"@xyflow/react": "^12.2.0",
"clever_tools": "github:beeclever/clever_tools",
"i18next": "^23.11.5",
"isbot": "^5.1.0",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.1.2",
"vite-tsconfig-paths": "^4.3.1",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@remix-run/eslint-config": "^2.7.1",
"@shopify/api-codegen-preset": "^1.0.0",
"@shopify/cli": "^3.62.0",
"@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",
"i": "^0.3.7",
"npm": "^10.8.1",
"pretoml": "file:utils/pretoml",
"prettier": "^3.2.4",
"prisma": "^5.19.0",
"typescript": "^5.2.2",
"vite": "^5.1.3"
},
"workspaces": [
"extensions/*"
],
"trustedDependencies": [
"@shopify/plugin-cloudflare"
],
"resolutions": {
"undici": "6.13.0"
},
"overrides": {
"undici": "6.13.0"
},
"author": "andre"
}