Skip to content

Commit 457b7f5

Browse files
author
seungwonme
committed
Update
1 parent 5dda442 commit 457b7f5

19 files changed

+3644
-1
lines changed

Diff for: .gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dist-ssr
2525
*.sln
2626
*.sw?
2727

28-
# django
28+
# django
2929

3030
# Icon must end with two \r
3131
Icon
@@ -108,3 +108,5 @@ local_settings.py
108108

109109
.env
110110
db.sqlite3
111+
112+
poetry.lock

Diff for: fe/next/ag-grid/.gitignore

+41
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

Diff for: fe/next/ag-grid/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# AG Grid
2+
3+
- [Quick Start](https://www.ag-grid.com/react-data-grid/getting-started/)
4+
- [Demo](https://github.com/ag-grid/ag-grid-demos/tree/main/finance/react)

Diff for: fe/next/ag-grid/eslint.config.mjs

+16
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;

Diff for: fe/next/ag-grid/next.config.ts

+7
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;

Diff for: fe/next/ag-grid/package.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "ag-grid",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "next dev --turbopack",
7+
"build": "next build",
8+
"start": "next start",
9+
"lint": "next lint"
10+
},
11+
"dependencies": {
12+
"ag-grid-community": "^33.1.1",
13+
"ag-grid-react": "^33.1.1",
14+
"next": "15.2.1",
15+
"react": "^19.0.0",
16+
"react-dom": "^19.0.0"
17+
},
18+
"devDependencies": {
19+
"@eslint/eslintrc": "^3",
20+
"@tailwindcss/postcss": "^4",
21+
"@types/node": "^20",
22+
"@types/react": "^19",
23+
"@types/react-dom": "^19",
24+
"eslint": "^9",
25+
"eslint-config-next": "15.2.1",
26+
"tailwindcss": "^4",
27+
"typescript": "^5"
28+
}
29+
}

0 commit comments

Comments
 (0)