-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
46
{
"private": true,
"name": "remix-app-template",
"main": "./dist/worker.js",
"scripts": {
"clean": "rimraf .cache .mf build dist",
"dev": "npm run build:remix && cross-env NODE_ENV=development concurrently \"npm:dev:*\"",
"dev:remix": "remix watch",
"dev:worker": "miniflare --build-command \"node ./scripts/build.js\" --watch",
"build": "npm run build:remix && npm run build:worker",
"build:remix": "remix build",
"build:worker": "NODE_ENV=production node ./scripts/build.js",
"deploy": "wrangler publish",
"postinstall": "remix setup cloudflare-workers",
"format": "prettier --write \"**/*.{js,ts,jsx,tsx,json,md,yml}\""
},
"dependencies": {
"@prisma/client": "^3.7.0",
"@remix-run/cloudflare-workers": "^1.1.1",
"@remix-run/react": "^1.1.1",
"chalk": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.4.0",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@remix-run/dev": "^1.1.1",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.9",
"concurrently": "^6.5.1",
"cross-env": "^7.0.3",
"esbuild": "0.13.14",
"esbuild-plugin-alias": "^0.2.1",
"miniflare": "2.0.0-next.3",
"prettier": "^2.5.1",
"prisma": "^3.7.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}