-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from tidev/cla
Add CLA signing and verification
- Loading branch information
Showing
96 changed files
with
6,254 additions
and
1,524 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,6 @@ | ||
{ | ||
"extends": "next/core-web-vitals" | ||
"extends": "next/core-web-vitals", | ||
"rules": { | ||
"react/no-unescaped-entities": "off" | ||
} | ||
} |
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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,14 @@ | ||
import mdx from '@next/mdx'; | ||
|
||
const withMDX = mdx(); | ||
|
||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = withMDX({ | ||
env: { | ||
SITE_URL: 'https://tidev.io/' | ||
}, | ||
pageExtensions: ['js', 'jsx', 'mdx', 'ts', 'tsx'] | ||
}); | ||
|
||
export default 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,41 +1,57 @@ | ||
{ | ||
"name": "tidev.io", | ||
"version": "2.0.0", | ||
"version": "3.0.0", | ||
"private": true, | ||
"scripts": { | ||
"build": "npm run build:css && next build", | ||
"build:css": "tailwindcss -m -i styles/site.css -o app/styles/site.css", | ||
"dev": "concurrently \"npm run dev:css\" \"next dev\"", | ||
"dev:css": "tailwindcss -w -i styles/site.css -o public/styles/site.css", | ||
"start": "next start", | ||
"lint": "next lint" | ||
"build": "pnpm copy-pdf-files && next build", | ||
"copy-pdf-files": "node scripts/copy-pdf-files", | ||
"dev": "pnpm copy-pdf-files && next dev", | ||
"lint": "next lint", | ||
"start": "next start" | ||
}, | ||
"dependencies": { | ||
"globby": "^13.1.2", | ||
"gray-matter": "^4.0.3", | ||
"markdown-it": "^13.0.1", | ||
"next": "12.2.0", | ||
"next-seo": "^5.4.0", | ||
"querystring": "^0.2.1", | ||
"@mdx-js/loader": "3.0.1", | ||
"@mdx-js/react": "3.0.1", | ||
"@next/mdx": "14.1.2", | ||
"@types/mdx": "2.0.11", | ||
"fs-extra": "11.2.0", | ||
"globby": "14.0.1", | ||
"gray-matter": "4.0.3", | ||
"markdown-it": "14.0.0", | ||
"next": "14.1.2", | ||
"next-auth": "4.24.6", | ||
"open-pdf-sign": "0.1.7", | ||
"pdf-lib": "1.17.1", | ||
"pdfjs-dist": "4.0.379", | ||
"querystring": "0.2.1", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"uuid": "^8.3.2" | ||
"react-signature-canvas": "1.0.6", | ||
"rss": "1.2.2", | ||
"uuid": "9.0.1", | ||
"which": "4.0.0" | ||
}, | ||
"devDependencies": { | ||
"@tailwindcss/typography": "^0.5.2", | ||
"@types/markdown-it": "^12.2.3", | ||
"@types/node": "^18.0.0", | ||
"@types/react": "^18.0.14", | ||
"@types/uuid": "^8.3.4", | ||
"autoprefixer": "^10.4.7", | ||
"concurrently": "^7.2.2", | ||
"eslint": "8.18.0", | ||
"eslint-config-next": "12.2.0", | ||
"postcss": "^8.4.14", | ||
"tailwindcss": "^3.1.4", | ||
"typescript": "^4.7.4" | ||
"@tailwindcss/typography": "0.5.10", | ||
"@types/fs-extra": "11.0.4", | ||
"@types/lodash": "4.14.202", | ||
"@types/markdown-it": "13.0.7", | ||
"@types/node": "20.11.24", | ||
"@types/react": "18.2.62", | ||
"@types/react-dom": "18.2.19", | ||
"@types/react-pdf": "6.2.0", | ||
"@types/react-signature-canvas": "1.0.5", | ||
"@types/rss": "0.0.32", | ||
"@types/uuid": "9.0.8", | ||
"@types/which": "3.0.3", | ||
"autoprefixer": "10.4.18", | ||
"eslint": "8.57.0", | ||
"eslint-config-next": "14.1.2", | ||
"postcss": "8.4.35", | ||
"tailwindcss": "3.4.1", | ||
"typescript": "5.3.3" | ||
}, | ||
"engines": { | ||
"node": ">=16" | ||
"node": ">=20" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.