-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 966 Bytes
/
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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"deploy": "deployctl deploy --prod --include=build,public --project=<your deno deploy project> ./build/index.js",
"dev": "remix build && run-p dev:*",
"dev:deno": "cross-env NODE_ENV=development deno run --unstable --watch --allow-net --allow-read --allow-env ./build/index.js",
"dev:remix": "remix watch",
"format": "deno fmt --ignore=node_modules,build,public/build",
"lint": "deno lint --ignore=node_modules,build,public/build",
"start": "cross-env NODE_ENV=production deno run --unstable --allow-net --allow-read --allow-env ./build/index.js"
},
"dependencies": {
"@remix-run/deno": "^1.5.1",
"@remix-run/react": "^1.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@remix-run/dev": "^1.5.1",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">=14"
}
}