-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 4.1 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 4.1 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "Suncoast Systems Cloudflare Template Shell App",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --webpack",
"start": "npm run cf:preview",
"build": "next build --webpack",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"deploy": "npm run cf:build",
"cf:build": "opennextjs-cloudflare build && npm run cf:patch-prefetch-manifest",
"cf:patch-prefetch-manifest": "node scripts/patch-prefetch-hints-loader.mjs",
"cf:resolve-config": "node scripts/resolve-wrangler-d1-ids.mjs --input wrangler.jsonc --output wrangler.resolved.jsonc",
"cf:preview": "npm run cf:build && npm run cf:resolve-config && wrangler dev --config wrangler.resolved.jsonc --env preview",
"cf:deploy:preview": "npm run cf:build && npm run cf:resolve-config && WRANGLER_LOG=error wrangler deploy --config wrangler.resolved.jsonc --env preview",
"cf:deploy:production": "npm run cf:build && npm run cf:resolve-config && WRANGLER_LOG=error wrangler deploy --config wrangler.resolved.jsonc --env production",
"mobile:add:ios": "npx cap add ios",
"mobile:add:android": "npx cap add android",
"mobile:sync": "npx cap sync",
"mobile:open:ios": "npx cap open ios",
"mobile:open:android": "npx cap open android",
"cache:worker:deploy": "WRANGLER_LOG=error wrangler deploy --config workers/cache-refresher/wrangler.toml"
},
"dependencies": {
"@capacitor/core": "^8.1.0",
"@nextui-org/react": "^2.4.8",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-aspect-ratio": "^1.1.8",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-menubar": "^1.1.16",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-toolbar": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@reduxjs/toolkit": "^2.2.7",
"drizzle-orm": "^0.45.2",
"lodash": "^4.18.1",
"next": "16.2.4",
"next-pwa": "^5.6.0",
"next-themes": "^0.3.0",
"node": "^20",
"npm-gcp-logging": "^1.0.59",
"npm-gcp-token": "^1.0.19",
"ol": "^10.2.1",
"react": "^18.3.1",
"react-cookie": "^7.2.0",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"serialize-error": "^11.0.3",
"workbox-background-sync": "^7.3.0",
"workbox-broadcast-update": "^7.3.0",
"workbox-cacheable-response": "^7.3.0",
"workbox-core": "^7.3.0",
"workbox-expiration": "^7.3.0",
"workbox-google-analytics": "^7.3.0",
"workbox-navigation-preload": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-range-requests": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0",
"workbox-streams": "^7.3.0"
},
"devDependencies": {
"@capacitor/cli": "^7.5.0",
"@cloudflare/workers-types": "^4.20241011.0",
"@opennextjs/cloudflare": "^1.17.1",
"@types/lodash": "^4.14.191",
"@types/next-pwa": "^5.6.9",
"@types/node": "^22.8.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.20",
"esbuild": "^0.27.3",
"eslint": "^9.13.0",
"eslint-config-next": "^16.1.6",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"wrangler": "^4.75.0"
},
"license": "https://themeforest.net/licenses/standard"
}