Skip to content

Commit 0400ee8

Browse files
committed
🎉 initial commit
0 parents  commit 0400ee8

File tree

17 files changed

+3787
-0
lines changed

17 files changed

+3787
-0
lines changed

‎.gitignore‎

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
12+
13+
# testing
14+
/coverage
15+
16+
# next.js
17+
/.next/
18+
/out/
19+
20+
# production
21+
/build
22+
23+
# misc
24+
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
.pnpm-debug.log*
32+
33+
# env files (can opt-in for committing if needed)
34+
.env*
35+
36+
# vercel
37+
.vercel
38+
39+
# typescript
40+
*.tsbuildinfo
41+
next-env.d.ts

‎README.md‎

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## Getting Started
2+
3+
First, make sure you're running the following versions of `node` and `pnpm`:
4+
5+
```bash
6+
node 22.14.0
7+
pnpm 10.7.0
8+
```
9+
10+
After setting up Node and PNPM, install the dependencies with `pnpm`:
11+
12+
```bash
13+
pnpm i
14+
```
15+
16+
Then, run the development server:
17+
18+
```bash
19+
pnpm dev
20+
```
21+
22+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

‎eslint.config.mjs‎

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { dirname } from "path";
2+
import { fileURLToPath } from "url";
3+
import { FlatCompat } from "@eslint/eslintrc";
4+
5+
const __filename = fileURLToPath(import.meta.url);
6+
const __dirname = dirname(__filename);
7+
8+
const compat = new FlatCompat({
9+
baseDirectory: __dirname,
10+
});
11+
12+
const eslintConfig = [
13+
...compat.extends("next/core-web-vitals", "next/typescript"),
14+
];
15+
16+
export default eslintConfig;

‎next.config.ts‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import type { NextConfig } from "next";
2+
3+
const nextConfig: NextConfig = {
4+
/* config options here */
5+
};
6+
7+
export default nextConfig;

‎package.json‎

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "fe-interview",
3+
"version": "0.1.0",
4+
"private": true,
5+
"engines": {
6+
"pnpm": "10.7.0",
7+
"node": "22.14.0"
8+
},
9+
"scripts": {
10+
"dev": "next dev",
11+
"build": "next build",
12+
"start": "next start",
13+
"lint": "next lint"
14+
},
15+
"dependencies": {
16+
"clsx": "^2.1.1",
17+
"next": "15.2.4",
18+
"react": "^19.0.0",
19+
"react-dom": "^19.0.0",
20+
"sass": "^1.86.0"
21+
},
22+
"devDependencies": {
23+
"@eslint/eslintrc": "^3.3.1",
24+
"@types/node": "^22.13.14",
25+
"@types/react": "^19.0.12",
26+
"@types/react-dom": "^19.0.4",
27+
"eslint": "^9.23.0",
28+
"eslint-config-next": "15.2.4",
29+
"eslint-plugin-react-hooks": "^5.2.0",
30+
"typescript": "^5.8.2"
31+
},
32+
"pnpm": {
33+
"onlyBuiltDependencies": [
34+
"@parcel/watcher",
35+
"sharp"
36+
]
37+
}
38+
}

0 commit comments

Comments
 (0)