Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
cache: 'npm'
cache-dependency-path: frontend/package-lock.json

Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
cache: 'npm'
cache-dependency-path: frontend/package-lock.json

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/frontend-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
cache: 'npm'
cache-dependency-path: frontend/package-lock.json

Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
cache: 'npm'
cache-dependency-path: frontend/package-lock.json

Expand All @@ -82,7 +82,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
cache: 'npm'
cache-dependency-path: frontend/package-lock.json

Expand Down
2 changes: 1 addition & 1 deletion frontend/.node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
2 changes: 1 addition & 1 deletion frontend/CLOUDFLARE_PAGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- **Build command**: `npm run build`
- **Build output directory**: `.next`
- **Root directory**: `frontend`
- **Node.js version**: 18 (specified in `.node-version`)
- **Node.js version**: 20 (specified in `.node-version`)

### Environment Variables

Expand Down
97 changes: 43 additions & 54 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
Expand All @@ -18,7 +18,7 @@
"test:all": "npm test && npm run test:e2e"
},
"dependencies": {
"next": "^15.5.10",
"next": "^16.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^16.1.0"
Expand All @@ -41,7 +41,7 @@
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"node": ">=20.9.0",
"npm": ">=9.0.0"
},
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
Expand All @@ -23,7 +23,7 @@
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "jest.setup.js"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "jest.setup.js", ".next/dev/types/**/*.ts"],
"exclude": ["node_modules"],
"types": ["jest", "@testing-library/jest-dom"]
}
Expand Down
Loading