-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.86 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
{
"name": "example-remix",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "node --env-file=.env ./server.js",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "cross-env NODE_ENV=production node --env-file=.env ./server.js",
"typecheck": "tsc"
},
"dependencies": {
"@arcjet/decorate": "1.0.0-beta.1",
"@arcjet/remix": "1.0.0-beta.1",
"@hookform/resolvers": "3.10.0",
"@radix-ui/react-label": "2.1.1",
"@radix-ui/react-slot": "1.1.1",
"@remix-run/express": "2.15.2",
"@remix-run/node": "2.15.2",
"@remix-run/react": "2.15.2",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"compression": "1.7.5",
"cross-env": "7.0.3",
"express": "4.21.2",
"isbot": "5.1.21",
"lucide-react": "0.474.0",
"morgan": "1.10.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"remix-auth": "3.7.0",
"remix-auth-github": "2.0.0",
"remix-themes": "1.5.1",
"tailwind-merge": "2.6.0",
"tailwindcss-animate": "1.0.7"
},
"devDependencies": {
"@remix-run/dev": "2.15.2",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "8.22.0",
"@typescript-eslint/parser": "8.22.0",
"autoprefixer": "10.4.20",
"eslint": "8",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"postcss": "8.5.1",
"sass": "1.83.4",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"vite": "5.4.14",
"vite-tsconfig-paths": "5.1.4"
},
"overrides": {
"@remix-run/server-runtime": {
"cookie": "^0.7.2"
}
},
"engines": {
"node": ">=20.0.0"
}
}