-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "personal-website",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "vite build && vite build --ssr",
"dev": "vite dev",
"serve": "NODE_ENV=production node --env-file=.env server.mjs",
"prestart": "npm run build",
"start": "npm run serve",
"prepm2": "npm run build",
"pm2": "pm2 start npm --name 'personal-website' -- run serve"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.433.0",
"@hookform/resolvers": "^3.3.2",
"@remix-run/node": "^2.2.0",
"@remix-run/react": "^2.2.0",
"@remix-run/serve": "^2.2.0",
"clsx": "^2.0.0",
"framer-motion": "^10.16.4",
"isbot": "^3.6.8",
"lucide-react": "^0.286.0",
"react": "^18.2.0",
"react-aria": "^3.29.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"react-stately": "^3.27.0",
"tailwind-merge": "^1.14.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@remix-run/dev": "^2.2.0",
"@remix-run/eslint-config": "^2.2.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"autoprefixer": "^10.4.16",
"eslint": "^8.38.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"vite": "^4.5.0",
"vite-tsconfig-paths": "^4.2.1"
},
"engines": {
"node": ">=18.0.0"
}
}