-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.14 KB
/
package.json
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
{
"name": "remix-cloudflare-workers-boilerplate",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"main": "build/index.js",
"scripts": {
"build": "remix build",
"deploy": "npm run build && wrangler publish",
"dev:miniflare": "cross-env NODE_ENV=development wrangler dev --config wrangler.dev.toml --env dev --local",
"dev": "concurrently \"npm run dev:miniflare\" \"remix watch\"",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.2.0",
"@remix-run/cloudflare": "^1.7.6",
"@remix-run/cloudflare-workers": "^1.7.6",
"@remix-run/react": "^1.7.6",
"cross-env": "^7.0.3",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"@remix-run/dev": "^1.7.6",
"@remix-run/eslint-config": "^1.7.6",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"concurrently": "^7.6.0",
"eslint": "^8.28.0",
"miniflare": "^2.11.0",
"prettier": "^2.8.0",
"typescript": "^4.9.3",
"wrangler": "^2.4.4"
},
"engines": {
"node": ">=16.13.0"
}
}