-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
{
"name": "my-remix-app",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual -c \"npm run start\"",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "wrangler pages dev ./public",
"types": "tsc"
},
"dependencies": {
"@marsidev/react-turnstile": "^1.1.0",
"@react-email/components": "^0.0.32",
"@remix-run/cloudflare": "^2.5.1",
"@remix-run/cloudflare-pages": "^2.5.1",
"@remix-run/css-bundle": "^2.15.2",
"@remix-run/react": "^2.5.1",
"isbot": "^5.1.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-email": "^3.0.6",
"resend": "^4.1.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250124.3",
"@remix-run/dev": "^2.5.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsonc": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"typescript": "^5.7.3",
"wrangler": "3.105.1"
},
"engines": {
"node": ">=18.0.0"
}
}