-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5ac4a3
commit 6f28d1c
Showing
20 changed files
with
7,983 additions
and
4,476 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"extends": "next/core-web-vitals" | ||
"extends": "next/core-web-vitals" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-3.6.3.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = {} | ||
/** @type {import("next").NextConfig} */ | ||
const nextConfig = {}; | ||
|
||
module.exports = nextConfig | ||
module.exports = nextConfig; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,43 @@ | ||
{ | ||
"name": "octocord-site", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start", | ||
"lint": "next lint" | ||
}, | ||
"dependencies": { | ||
"@nextui-org/react": "^2.1.13", | ||
"@types/node": "20.6.3", | ||
"@types/react": "18.2.22", | ||
"@types/react-dom": "18.2.7", | ||
"autoprefixer": "10.4.16", | ||
"eslint": "8.49.0", | ||
"eslint-config-next": "13.5.2", | ||
"framer-motion": "^10.16.4", | ||
"next": "13.5.2", | ||
"postcss": "8.4.30", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"react-icons": "^4.11.0", | ||
"tailwindcss": "3.3.3", | ||
"typescript": "5.2.2" | ||
} | ||
"dependencies": { | ||
"@nextui-org/react": "^2.1.13", | ||
"@opentelemetry/api": "^1.6.0", | ||
"@types/eslint": "^8.44.2", | ||
"@types/node": "^20.6.3", | ||
"@types/react": "^18.2.22", | ||
"@types/react-dom": "^18.2.7", | ||
"autoprefixer": "^10.4.16", | ||
"eslint": "^8.49.0", | ||
"eslint-config-next": "^13.5.2", | ||
"framer-motion": "^10.16.4", | ||
"next": "^13.5.2", | ||
"postcss": "^8.4.30", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react-icons": "^4.11.0", | ||
"sass": "^1.68.0", | ||
"tailwindcss": "^3.3.3", | ||
"typescript": "^5.2.2" | ||
}, | ||
"name": "octocord-site", | ||
"packageManager": "[email protected]", | ||
"prettier": { | ||
"arrowParens": "avoid", | ||
"bracketSameLine": true, | ||
"endOfLine": "lf", | ||
"jsxSingleQuote": false, | ||
"printWidth": 120, | ||
"semi": true, | ||
"singleQuote": false, | ||
"tabWidth": 4, | ||
"useTabs": true | ||
}, | ||
"private": true, | ||
"scripts": { | ||
"build": "next build", | ||
"dev": "next dev", | ||
"lint": "next lint", | ||
"start": "next start" | ||
}, | ||
"version": "0.1.0" | ||
} |
Oops, something went wrong.