Skip to content

Commit 64a8644

Browse files
Merge pull request #34 from GEC-SKP-DEV/main
mvp1
2 parents 515f73d + dfd0cbf commit 64a8644

66 files changed

Lines changed: 11452 additions & 7455 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

next.config.js

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
// next.config.js
2-
const isDev = process.env.NODE_ENV === 'development';
3-
const withPWA = require('next-pwa')({
4-
dest: 'public',
2+
const withPWA = require("next-pwa")({
3+
dest: "public",
54
// By default, disable in dev. Set PWA_DEV=1 to test PWA locally.
6-
disable: isDev && !process.env.PWA_DEV,
5+
disable: process.env.NODE_ENV === "development", // ✅ disable in dev
76
register: true,
87
skipWaiting: true,
98
});
109

1110
const nextConfig = {
11+
eslint: {
12+
ignoreDuringBuilds: true,
13+
},
14+
typescript: {
15+
16+
ignoreBuildErrors: true,
17+
},
1218
// App Router is enabled by default in Next 13+, nothing special needed here.
1319
// You can add any other Next config as required.
1420
};
1521

16-
module.exports = withPWA(nextConfig);
22+
module.exports = withPWA(nextConfig);

open-next.config.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

package-lock.json

Lines changed: 8501 additions & 6716 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,23 @@
1313
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
1414
},
1515
"dependencies": {
16+
"@headlessui/react": "^2.2.8",
17+
"@heroicons/react": "^2.2.0",
1618
"@opennextjs/cloudflare": "^1.6.5",
1719
"@types/papaparse": "^5.3.16",
1820
"chart.js": "^4.5.0",
1921
"date-fns": "^4.1.0",
2022
"firebase": "^11.9.1",
2123
"firebase-admin": "^13.4.0",
24+
"framer-motion": "^12.23.13",
2225
"iconsax-react": "^0.0.8",
2326
"idb": "^8.0.3",
2427
"lucide-react": "^0.475.0",
2528
"next": "^15.3.3",
2629
"next-pwa": "^5.6.0",
30+
"nextjs-google-analytics": "^2.3.7",
2731
"papaparse": "^5.5.3",
32+
"pg": "^8.16.3",
2833
"react": "^19.1.0",
2934
"react-chartjs-2": "^5.3.0",
3035
"react-dom": "^19.0.0",
@@ -40,6 +45,7 @@
4045
"@testing-library/react": "^16.3.0",
4146
"@types/jest": "^29.5.14",
4247
"@types/node": "^20",
48+
"@types/pg": "^8.15.5",
4349
"@types/react": "^19.0.8",
4450
"@types/react-dom": "^19",
4551
"@types/react-fontawesome": "^1.6.8",

public/club_image/blockchain.png

37.7 KB
Loading
62.2 KB
Loading

public/club_image/foss.png

33.2 KB
Loading

public/club_image/gdg.png

49 KB
Loading

public/club_image/iedc.png

46.5 KB
Loading

public/club_image/ml.png

60.8 KB
Loading

0 commit comments

Comments
 (0)