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
|
{
"name": "phperkaigi-2025-albatross-frontend",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"check": "npm run check:biome && npm run check:ts && npm run check:eslint",
"check:biome": "biome check --write",
"check:eslint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"check:ts": "tsc",
"dev": "remix vite:dev",
"openapi-typescript": "openapi-typescript --output ./app/api/schema.d.ts ../openapi/api-server.yaml",
"shiki-codegen": "shiki-codegen --langs php --themes github-light --engine javascript ./app/shiki.bundle.ts",
"start": "remix-serve ./build/server/index.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@remix-run/node": "^2.16.0",
"@remix-run/react": "^2.16.0",
"@remix-run/serve": "^2.16.0",
"cookie": "^1.0.2",
"isbot": "^5.1.23",
"jotai": "^2.12.1",
"jwt-decode": "^4.0.0",
"openapi-fetch": "^0.13.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use-precision-timer": "^3.5.6",
"remix-auth": "^3.7.0",
"remix-auth-form": "^1.5.0",
"shiki": "^3.1.0",
"use-debounce": "^10.0.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@remix-run/dev": "^2.16.0",
"@tailwindcss/postcss": "^4.0.12",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"openapi-typescript": "^7.6.1",
"shiki-codegen": "^3.1.0",
"tailwindcss": "^4.0.12",
"typescript": "^5.8.2",
"vite": "^6.1.1",
"vite-tsconfig-paths": "^5.1.4"
},
"engines": {
"node": ">=22.0.0"
}
}
|