-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.48 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.48 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
{
"name": "skylight",
"version": "0.0.1",
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"start": "cross-env NODE_ENV=production npm run wrangler",
"dev": "npm-run-all build --parallel \"dev:*\"",
"dev:remix": "remix watch",
"dev:wrangler": "cross-env NODE_ENV=development npm run wrangler",
"wrangler": "wrangler pages dev ./public --compatibility-date=2023-07-17 --compatibility-flag=nodejs_compat --kv KV --r2 UPLOADS",
"typecheck": "tsc",
"deploy": "npm run build && wrangler pages deploy ./public"
},
"dependencies": {
"@remix-run/cloudflare": "^1.19.1",
"@remix-run/cloudflare-pages": "^1.19.1",
"@remix-run/css-bundle": "^1.19.1",
"@remix-run/react": "^1.19.1",
"@types/lodash-es": "^4.17.7",
"@types/luxon": "^3.3.0",
"cross-env": "^7.0.3",
"isbot": "^3.6.8",
"jszip": "^3.10.1",
"lodash-es": "^4.17.21",
"luxon": "^3.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-images-uploading": "^3.1.7",
"skylight-theme-compat-ghost": "^0.2.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.19.0",
"@remix-run/dev": "^1.19.1",
"@remix-run/eslint-config": "^1.19.1",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"daisyui": "^3.1.6",
"eslint": "^8.38.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4",
"wrangler": "^3.4.0"
},
"engines": {
"node": ">=16.13"
}
}