-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.48 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
76
77
78
79
80
81
82
83
{
"name": "lean-stack",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"test": "vitest run",
"prettier:check": "prettier -c .",
"prettier:format": "prettier -w ."
},
"dependencies": {
"@aws-sdk/client-ses": "^3.734.0",
"@conform-to/react": "^1.1.5",
"@conform-to/zod": "^1.1.5",
"@libsql/client": "^0.14.0",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@react-email/components": "0.0.32",
"@remix-run/node": "^2.11.0",
"@remix-run/react": "^2.11.0",
"@remix-run/serve": "^2.15.2",
"@types/lodash": "^4.17.15",
"argon2": "^0.41.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.38.4",
"isbot": "^5.1.22",
"lodash": "^4.17.21",
"lucide-react": "^0.474.0",
"nodemailer": "^6.10.0",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"remix-auth": "^3.7.0",
"remix-auth-google": "^2.0.0",
"remix-themes": "^1.5.1",
"resend": "^4.1.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@remix-run/dev": "^2.15.2",
"@types/nodemailer": "^6.4.17",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.30.4",
"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-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"jsdom": "^26.0.0",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"react-email": "3.0.6",
"typescript": "^5.7.3",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.4"
},
"engines": {
"node": ">=20.0.0"
}
}