-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.78 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
{
"name": "storefront-tanstack",
"version": "0.1.0",
"type": "module",
"description": "storefront-tanstack storefront powered by TanStack Start",
"scripts": {
"dev": "vite dev",
"dev:clean": "rm -rf node_modules/.vite .wrangler/state .tanstack && vite dev",
"generate:blocks": "bun node_modules/@decocms/blocks-cli/scripts/generate-blocks.ts",
"generate:routes": "tsr generate",
"generate:schema": "bun node_modules/@decocms/blocks-cli/scripts/generate-schema.ts --site storefront-tanstack",
"generate:invoke": "bun node_modules/@decocms/blocks-cli/scripts/generate-invoke.ts",
"generate:sections": "bun node_modules/@decocms/blocks-cli/scripts/generate-sections.ts",
"generate:loaders": "bun node_modules/@decocms/blocks-cli/scripts/generate-loaders.ts --exclude shopify/loaders,shopify/actions",
"build": "npm run generate:blocks && npm run generate:sections && npm run generate:loaders && npm run generate:schema && tsr generate && vite build",
"preview": "vite preview",
"deploy": "npm run build && wrangler deploy",
"sync:kv": "bun node_modules/@decocms/blocks-cli/scripts/sync-blocks-to-kv.ts",
"types": "wrangler types",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"knip": "knip",
"knip:fix": "knip --fix",
"clean": "rm -rf node_modules .cache dist .wrangler/state node_modules/.vite && npm install",
"tailwind:lint": "tsx scripts/tailwind-lint.ts",
"tailwind:fix": "tsx scripts/tailwind-lint.ts --fix",
"update": "bunx npm-check-updates -u -f '@decocms/*' && bun install"
},
"author": "deco.cx",
"license": "MIT",
"dependencies": {
"@decocms/apps-commerce": "^7.20.7",
"@decocms/apps-shopify": "^7.20.7",
"@decocms/apps-vtex": "^7.20.7",
"@decocms/blocks": "^7.20.7",
"@decocms/blocks-admin": "^7.20.7",
"@decocms/blocks-cli": "^7.20.7",
"@decocms/tanstack": "^7.20.7",
"@tanstack/react-query": "5.90.21",
"@tanstack/react-router": "1.166.7",
"@tanstack/react-start": "1.166.8",
"@tanstack/react-store": "0.9.2",
"@tanstack/store": "0.9.2",
"colorjs.io": "^0.5.2",
"preact-render-to-string": "^6.4.2",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.27.0",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/router-cli": "1.166.7",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"babel-plugin-react-compiler": "^1.0.0",
"daisyui": "^5.5.19",
"knip": "^5.61.2",
"prettier": "^3.5.3",
"tailwindcss": "^4.2.1",
"ts-morph": "^27.0.2",
"tsx": "^4.19.4",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"wrangler": "^4.72.0"
}
}