-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.34 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
41
42
43
44
45
{
"private": true,
"name": "remix-cloudflare-pages",
"description": "An opinionated template for running Remix on Cloudflare Pages.",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"build": "remix build",
"dev": "remix build && run-p \"dev:*\"",
"dev:remix": "remix watch",
"dev:wrangler": "cross-env NODE_ENV=development wrangler pages dev --local --compatibility-date=2022-11-21 ./public",
"start": "cross-env NODE_ENV=production pnpm run dev:wrangler"
},
"dependencies": {
"@remix-run/cloudflare": "^1.7.6",
"@remix-run/cloudflare-pages": "^1.7.6",
"@remix-run/react": "^1.7.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.18.0",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@remix-run/dev": "^1.7.6",
"@remix-run/eslint-config": "^1.7.6",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"typescript": "^4.9.3",
"wrangler": "2.4.2"
},
"engines": {
"node": ">=16.13"
},
"sideEffects": false,
"main": "dist/worker.js"
}