-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build": "npm i && rescript build && cross-env NODE_ENV=production remix build",
"dev": "cross-env NODE_ENV=development run-p dev:*",
"dev:remix": "remix watch",
"dev:rescript": "rescript build -w",
"dev:wrangler": "wrangler pages dev ./public --watch ./build",
"start": "npm run dev:wrangler",
"postinstall": "remix setup cloudflare-pages"
},
"dependencies": {
"@remix-run/cloudflare-pages": "^1.1.3",
"@remix-run/react": "^1.1.3",
"@rescript/react": "^0.10.3",
"@ryyppy/rescript-promise": "^2.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.3",
"rescript-remix": "^0.2.1",
"rescript-webapi": "^0.4.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.2.0",
"@remix-run/dev": "^1.1.3",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"cross-env": "^7.0.3",
"esbuild": "0.13.14",
"npm-run-all": "^4.1.5",
"patch-package": "^6.4.7",
"rescript": "^9.1.4",
"typescript": "^4.1.2",
"wrangler": "alpha"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"main": "dist/worker.js"
}