Compare commits

..

No commits in common. "1c2fab253767818679d05771dbe5295057bf87aa" and "1acfede68f912d995c16753b5737333ef23e927f" have entirely different histories.

14 changed files with 157 additions and 1078 deletions

View File

@ -41,7 +41,7 @@
"prisma": "^4.5.0", "prisma": "^4.5.0",
"tailwind-scrollbar": "^2.0.1", "tailwind-scrollbar": "^2.0.1",
"tailwindcss": "^3.2.0", "tailwindcss": "^3.2.0",
"@acme/tsconfig": "workspace:*", "tsconfig": "workspace:*",
"typescript": "^4.8.4" "typescript": "^4.8.4"
}, },
"ct3aMetadata": { "ct3aMetadata": {

View File

@ -18,7 +18,7 @@
"@babel/core": "^7.0.0", "@babel/core": "^7.0.0",
"eslint-config-custom": "workspace:*", "eslint-config-custom": "workspace:*",
"eslint": "7.32.0", "eslint": "7.32.0",
"@acme/tsconfig": "workspace:*", "tsconfig": "workspace:*",
"@types/node": "^17.0.12", "@types/node": "^17.0.12",
"@types/react": "^18.0.22", "@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7", "@types/react-dom": "^18.0.7",

View File

@ -11,10 +11,10 @@
"type-check": "tsc --noEmit" "type-check": "tsc --noEmit"
}, },
"dependencies": { "dependencies": {
"@acme/api": "workspace:*", "@acme/api": "*",
"@acme/auth": "workspace:*", "@acme/auth": "*",
"@acme/db": "workspace:*", "@acme/db": "*",
"@acme/tailwind-config": "workspace:*", "@acme/tailwind-config": "*",
"@tanstack/react-query": "^4.16.1", "@tanstack/react-query": "^4.16.1",
"@trpc/client": "^10.1.0", "@trpc/client": "^10.1.0",
"@trpc/next": "^10.1.0", "@trpc/next": "^10.1.0",
@ -35,7 +35,6 @@
"eslint-config-next": "13.0.4", "eslint-config-next": "13.0.4",
"postcss": "^8.4.19", "postcss": "^8.4.19",
"tailwindcss": "^3.2.4", "tailwindcss": "^3.2.4",
"typescript": "^4.9.3", "typescript": "^4.9.3"
"@acme/tsconfig": "workspace:*"
} }
} }

View File

@ -1,37 +1,12 @@
{ {
"extends": "@acme/tsconfig/t3.json", "extends": "../../tsconfig.json",
"exclude": [],
"include": [ "include": [
"next-env.d.ts", "next-env.d.ts",
"node_modules/@acme/auth/next-auth.d.ts",
"**/*.ts", "**/*.ts",
"**/*.tsx", "**/*.tsx",
"**/*.cjs", "**/*.cjs",
"**/*.mjs", "**/*.mjs"
"node_modules/@acme/auth/next-auth.d.ts"
],
"exclude": [
"node_modules"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@env/*": [
"src/env/*"
],
"@pages/*": [
"src/pages/*"
],
"@styles/*": [
"src/styles/*"
],
"@api/*": [
"@acme/api/*"
],
"@public/*": [
"public/*"
],
"@components/*": [
"src/components/*"
] ]
}
}
} }

View File

@ -18,7 +18,7 @@
"@babel/core": "^7.0.0", "@babel/core": "^7.0.0",
"eslint-config-custom": "workspace:*", "eslint-config-custom": "workspace:*",
"eslint": "7.32.0", "eslint": "7.32.0",
"@acme/tsconfig": "workspace:*", "tsconfig": "workspace:*",
"@types/node": "^17.0.12", "@types/node": "^17.0.12",
"@types/react": "^18.0.22", "@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7", "@types/react-dom": "^18.0.7",

View File

@ -4,7 +4,7 @@
"private": true, "private": true,
"workspaces": [ "workspaces": [
"apps/*", "apps/*",
"packages/**/*" "packages/*"
], ],
"scripts": { "scripts": {
"build": "turbo build", "build": "turbo build",

View File

@ -5,7 +5,6 @@ import { authRouter } from "./auth";
export const appRouter = router({ export const appRouter = router({
post: postRouter, post: postRouter,
auth: authRouter, auth: authRouter,
namegen: nameGenRouter,
}); });
// export type definition of API // export type definition of API

View File

@ -1,4 +0,0 @@
import { protectedProcedure, publicProcedure, router } from "../../trpc";
export const nameGenRouter = router ({
});

View File

@ -1,5 +1,5 @@
{ {
"name": "@acme/eslint-config", "name": "config",
"version": "1.0.0", "version": "1.0.0",
"main": "index.js", "main": "index.js",
"license": "MIT", "license": "MIT",

View File

@ -1,5 +1,5 @@
{ {
"name": "@acme/tsconfig", "name": "tsconfig",
"version": "0.0.0", "version": "0.0.0",
"private": true, "private": true,
"files": [ "files": [

View File

@ -13,7 +13,7 @@
"eslint": "^7.32.0", "eslint": "^7.32.0",
"eslint-config-custom": "workspace:*", "eslint-config-custom": "workspace:*",
"react": "^18.2.0", "react": "^18.2.0",
"@acme/tsconfig": "workspace:*", "tsconfig": "workspace:*",
"typescript": "^4.5.2" "typescript": "^4.5.2"
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,3 @@
packages: packages:
- "apps/*" - "apps/*"
- "packages/**/*" - "packages/*"