-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 976 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
29
30
31
32
33
34
35
{
"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"
},
"dependencies": {
"@remix-run/cloudflare": "^1.6.5",
"@remix-run/cloudflare-workers": "^1.6.5",
"@remix-run/react": "^1.6.5",
"cross-env": "^7.0.3",
"faunadb": "^4.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.10.0",
"@remix-run/dev": "^1.6.5",
"@remix-run/eslint-config": "^1.6.5",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"eslint": "^8.15.0",
"miniflare": "^2.4.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}