-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.15 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
{
"name": "tanstack-start-shopify-app-boilerplate",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"packageManager": "pnpm@11.14.0",
"scripts": {
"dev": "shopify app dev",
"deploy": "shopify app deploy --no-build",
"app:dev": "vite dev",
"app:build": "vite build && tsc --noEmit",
"app:start": "node .output/server/index.mjs",
"db:studio": "drizzle-kit studio",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:migrate": "drizzle-kit migrate",
"graphql:watch": "graphql-codegen --watch",
"graphql:generate": "graphql-codegen",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:destroy": "docker compose down -v",
"typecheck": "tsc --noEmit",
"lint": "eslint --no-warn-ignored",
"lint:fix": "eslint --fix",
"format": "prettier --write ."
},
"workspaces": {
"packages": [
"extensions/*"
]
},
"dependencies": {
"@logtape/logtape": "^2.2.4",
"@logtape/redaction": "^2.2.4",
"@shopify/shopify-api": "^13.1.0",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-router": "^1.170.18",
"@tanstack/react-start": "^1.168.30",
"drizzle-orm": "^0.45.2",
"drizzle-zod": "^0.8.3",
"isbot": "^5.2.1",
"nitro": "^3.0.260610-beta",
"pg": "^8.22.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"srvx": "^0.11.22",
"vite": "^8.1.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^7.2.0",
"@rolldown/plugin-babel": "^0.2.3",
"@shopify/admin-api-client": "^1.1.2",
"@shopify/api-codegen-preset": "^2.0.1",
"@shopify/app-bridge-types": "^0.7.2",
"@shopify/polaris-types": "^1.0.7",
"@tanstack/eslint-config": "^0.4.0",
"@tanstack/react-router-ssr-query": "^1.167.1",
"@types/node": "^25.5.2",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"babel-plugin-react-compiler": "^1.0.0",
"drizzle-kit": "^0.31.10",
"eslint": "^10.7.0",
"prettier": "^3.9.5",
"tsx": "^4.23.1",
"typescript": "^5.9.3"
}
}