Skip to content

Commit

Permalink
feat: add initial next.js webapp outline
Browse files Browse the repository at this point in the history
  • Loading branch information
transitive-bullshit committed Mar 23, 2023
1 parent 002bd0d commit 6b86527
Show file tree
Hide file tree
Showing 57 changed files with 4,766 additions and 74 deletions.
2 changes: 1 addition & 1 deletion .prettierrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
bracketSameLine: false,
arrowParens: 'always',
trailingComma: 'none',
importOrder: ['^node:.*', '<THIRD_PARTY_MODULES>', '^(@/(.*)$)', '^[./]'],
importOrder: ['^node:.*', '<THIRD_PARTY_MODULES>', '^@/', '^[./]'],
importOrderSeparation: true,
importOrderSortSpecifiers: true,
importOrderGroupNamespaceSpecifiers: true
Expand Down
2 changes: 1 addition & 1 deletion license
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Travis Fischer
Copyright (c) 2023 Travis Fischer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 6 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false
}

export default nextConfig
25 changes: 24 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check"
},
"dependencies": {
"@vercel/analytics": "^0.1.11",
"cheerio": "1.0.0-rc.12",
"clsx": "^1.2.1",
"delay": "^5.0.0",
"dequal": "^2.0.3",
"framer-motion": "^10.8.5",
"got": "^12.6.0",
"html-to-md": "^0.8.3",
"is-relative-url": "^4.0.0",
Expand All @@ -30,6 +34,8 @@
"mdast": "^3.0.0",
"mdast-util-to-markdown": "^1.5.0",
"mdast-util-to-string": "^3.1.1",
"next": "^13.2.4",
"next-themes": "^0.2.1",
"openai": "^3.2.1",
"p-map": "^5.5.0",
"p-memoize": "^7.1.1",
Expand All @@ -39,26 +45,43 @@
"pinecone-client": "^1.1.0",
"plur": "^5.1.0",
"quick-lru": "^6.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-spinners": "^0.13.8",
"react-use": "^17.4.0",
"remark-inline-links": "^6.0.1",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"rmfr": "^2.0.0",
"swr": "^2.1.1",
"unified": "^10.1.2",
"unist-util-inspect": "^7.0.2",
"unist-util-visit": "^4.1.2",
"unstated-next": "^1.1.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.2.4",
"@tailwindcss/typography": "^0.5.9",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/mdast": "^3.0.11",
"@types/node": "^18.15.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.14",
"dotenv-safe": "^8.2.0",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "^2.8.6",
"tailwindcss": "^3.2.7",
"tsx": "^3.12.6",
"typescript": "^5.0.2"
"typescript": "^5.0.2",
"typescript-plugin-css-modules": "^5.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
Expand Down
Loading

0 comments on commit 6b86527

Please sign in to comment.