-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.67 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
{
"name": "schwobe.dev",
"description": "https://schwobe.dev",
"version": "0.1.0",
"license": "MIT",
"author": "Michael Schwobe <[email protected]> (https://schwobe.dev)",
"repository": "github:michaelschwobe/schwobe.dev",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"clean": "rm -rf .netlify && rm -rf build && rm -rf public/build && rm -rf node_modules",
"dev": "remix vite:dev",
"format": "prettier --ignore-unknown --write .",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "netlify serve",
"typecheck": "tsc",
"validate": "pnpm run typecheck && pnpm run lint"
},
"dependencies": {
"@netlify/functions": "^2.7.0",
"@netlify/remix-adapter": "^2.4.0",
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"isbot": "^5.1.8",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@remix-run/dev": "^2.9.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
"node": ">=22.2.0"
},
"packageManager": "[email protected]"
}