-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "remix-workers-app",
"private": true,
"type": "module",
"scripts": {
"clean": "rm -rf dist && rm -rf public/dist",
"deploy": "npm run clean && remix build && wrangler deploy",
"dev": "remix dev --manual -c \"wrangler dev\"",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc"
},
"dependencies": {
"@remix-run/cloudflare": "^2.12.1",
"@remix-run/react": "^2.12.1",
"isbot": "^4.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240925.0",
"@remix-run/dev": "^2.12.1",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.0",
"wrangler": "^3.78.12"
},
"engines": {
"node": ">=20.0.0"
}
}