Skip to content

Commit

Permalink
Add turbo and migrate to monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
rasitds committed Mar 21, 2023
1 parent f24fb9b commit dc8bda8
Show file tree
Hide file tree
Showing 95 changed files with 644 additions and 8,957 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"extends": ["next/core-web-vitals", "plugin:@typescript-eslint/recommended"]
"extends": ["next/core-web-vitals", "plugin:@typescript-eslint/recommended", "turbo"]
}
18 changes: 10 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
node_modules
.pnp
.pnp.js

# testing
/coverage
coverage

# database
/prisma/db.sqlite
/prisma/db.sqlite-journal
prisma/db.sqlite
prisma/db.sqlite-journal

# next.js
/.next/
/out/
.next/
out/

# production
/build
build

# misc
.DS_Store
Expand All @@ -39,3 +39,5 @@ yarn-error.log*
# typescript
*.tsbuildinfo
pgdata

.turbo
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
59 changes: 59 additions & 0 deletions apps/reflect/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{
"name": "reflect",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@hookform/resolvers": "^2.9.8",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.10.7",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^4.4.0",
"@tanstack/react-query": "^4.12.0",
"@trpc/client": "^10.15.0",
"@trpc/next": "^10.15.0",
"@trpc/react": "^9.27.4",
"@trpc/react-query": "^10.15.0",
"@trpc/server": "^10.15.0",
"firebase": "^9.11.0",
"install": "^0.13.0",
"jotai": "^2.0.3",
"next": "13.2.4",
"next-auth": "~4.10.3",
"npm": "^8.19.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.36.1",
"react-icons": "^4.4.0",
"react-query": "^3.39.2",
"react-spring": "^9.5.5",
"react-syntax-highlighter": "^15.5.0",
"react-timer-hook": "^3.0.5",
"superjson": "^1.10.0",
"zod": "^3.18.0"
},
"devDependencies": {
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/react-syntax-highlighter": "^15.5.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "8.22.0",
"eslint-config-next": "13.2.4",
"prettier": "2.7.1",
"prisma": "^4.4.0",
"typescript": "4.7.4"
},
"ct3aMetadata": {
"initVersion": "5.14.0"
}
}
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { keyframes } from "@mui/system";
import { keyframes } from "@mui/material";
import { styled } from "@mui/material/styles";
import SyntaxHighlighter from "react-syntax-highlighter";
import { Paper } from "@mui/material";
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions tsconfig.json → apps/reflect/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"compilerOptions": {
"baseUrl": ".",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
Expand Down
3 changes: 3 additions & 0 deletions apps/reflect/vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"ignoreCommand": "pnpm dlx turbo-ignore"
}
Loading

0 comments on commit dc8bda8

Please sign in to comment.