generated from github/codespaces-blank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.11 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"deploy": "wrangler publish",
"dev:remix": "remix watch",
"dev:miniflare": "cross-env NODE_ENV=development miniflare ./build/index.js --watch",
"dev": "remix build && run-p \"dev:*\"",
"start": "cross-env NODE_ENV=production miniflare ./build/index.js",
"typecheck": "tsc",
"prettier": "npx prettier --write ./app"
},
"dependencies": {
"@remix-run/cloudflare": "^1.11.1",
"@remix-run/cloudflare-workers": "^1.11.1",
"@remix-run/css-bundle": "^1.11.1",
"@remix-run/react": "^1.11.1",
"cross-env": "^7.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.18.0",
"@remix-run/dev": "^1.11.1",
"@remix-run/eslint-config": "^1.11.1",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@vanilla-extract/css": "^1.9.3",
"eslint": "^8.27.0",
"miniflare": "^2.11.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.8.4",
"wrangler": "^2.8.1"
},
"engines": {
"node": ">=16.13"
}
}