-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "personal-website",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"build:icons": "bun run ./scripts/build-icons.ts",
"dev": "remix vite:dev",
"lint": "eslint . --ext .ts,.tsx --fix",
"fmt": "prettier 'app/**/*.{js,ts,jsx,tsx,json}' --write",
"fmt:check": "prettier 'app/**/*.{js,ts,jsx,tsx,json}' --check",
"start": "remix-serve ./build/server/index.js"
},
"dependencies": {
"@nasa-gcn/remix-seo": "^2.0.0",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"@vercel/analytics": "^1.2.2",
"isbot": "^5.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.1"
},
"devDependencies": {
"@remix-run/dev": "^2.8.1",
"@remix-run/eslint-config": "^2.8.1",
"@tailwindcss/typography": "^0.5.10",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@vercel/remix": "^2.8.1",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^10.3.10",
"node-html-parser": "^6.1.12",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vite-tsconfig-paths": "^4.3.1"
},
"engines": {
"node": ">=20"
}
}