generated from edmundhung/remix-cloudflare-template
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
75 lines (75 loc) · 2.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"private": true,
"name": "remix-guide",
"main": "./worker.js",
"description": "A platform for the Remix community",
"license": "MIT",
"scripts": {
"cleanup": "rimraf .cache ./dist ./build ./public/build ./app/styles/tailwind.css",
"build:remix": "remix build",
"build:style": "cross-env NODE_ENV=production tailwindcss -o ./app/styles/tailwind.css --minify",
"build:worker": "cross-env NODE_ENV=production VERSION=$(git rev-parse --short HEAD) node ./scripts/build.mjs",
"build": "npm run build:style && npm run build:remix && npm run build:worker",
"dev:miniflare": "miniflare --build-command \"node ./scripts/build.mjs\" --build-watch-path ./worker --build-watch-path ./build/index.js --no-cache --watch --kv-persist --do-persist --open",
"dev:remix": "remix watch",
"dev:style": "tailwindcss -o ./app/styles/tailwind.css --watch",
"dev": "concurrently \"npm:dev:*\"",
"prebuild": "npm run cleanup",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" playwright test",
"start": "miniflare",
"prepare": "husky install"
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.2.0",
"@remix-run/cloudflare-workers": "^1.7.6",
"@remix-run/react": "^1.7.6",
"clsx": "^1.2.1",
"html-entities": "^2.3.3",
"isbot": "^3.6.5",
"nanoid": "^3.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^8.33.1",
"remix-auth": "^3.3.0",
"remix-auth-github": "^1.1.1",
"toucan-js": "^2.6.0",
"workers-logger": "^0.2.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.18.0",
"@cloudflare/wrangler": "^1.20.0",
"@playwright-testing-library/test": "^4.5.0",
"@playwright/test": "^1.28.0",
"@remix-run/dev": "^1.7.6",
"@remix-run/eslint-config": "^1.7.6",
"@remix-run/node": "^1.7.6",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.8",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"autoprefixer": "^10.4.13",
"concurrently": "^7.5.0",
"cross-env": "^7.0.3",
"esbuild": "^0.15.14",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"miniflare": "^2.11.0",
"postcss": "^8.4.19",
"prettier": "^2.6.2",
"remix-flat-routes": "^0.4.8",
"rimraf": "^3.0.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=16.7"
},
"sideEffects": false,
"lint-staged": {
"*.{js,mjs,ts,tsx,css,md,yml}": "prettier --write"
}
}