-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"deploy": "wrangler deploy",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "wrangler dev ./server.js",
"typegen": "wrangler types",
"typecheck": "tsc"
},
"dependencies": {
"@apollo/client": "^3.10.4",
"@remix-run/cloudflare": "^2.9.2",
"@remix-run/react": "^2.9.2",
"classnames": "^2.5.1",
"deep-map-keys": "^2.0.1",
"he": "^1.2.0",
"html-react-parser": "^5.1.10",
"isbot": "^5.1.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"remix-sitemap": "^3.2.0",
"remix-utils": "^7.6.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240603.0",
"@remix-run/dev": "^2.9.2",
"@remix-run/eslint-config": "^2.9.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.9",
"@types/he": "^1.2.0",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.45.0",
"eslint-plugin-unused-imports": "^3.0.0",
"miniflare": "^3.20240524.2",
"npm-run-all2": "^5.0.0",
"prettier": "^2.8.8",
"prettier-eslint": "^16.3.0",
"react-html-props": "^2.0.9",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-tsconfig-paths": "^4.3.2",
"wrangler": "^3.59.0"
},
"engines": {
"node": ">=20.0.0"
}
}