Compare commits
No commits in common. "1c2fab253767818679d05771dbe5295057bf87aa" and "1acfede68f912d995c16753b5737333ef23e927f" have entirely different histories.
1c2fab2537
...
1acfede68f
|
@ -41,7 +41,7 @@
|
|||
"prisma": "^4.5.0",
|
||||
"tailwind-scrollbar": "^2.0.1",
|
||||
"tailwindcss": "^3.2.0",
|
||||
"@acme/tsconfig": "workspace:*",
|
||||
"tsconfig": "workspace:*",
|
||||
"typescript": "^4.8.4"
|
||||
},
|
||||
"ct3aMetadata": {
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
"@babel/core": "^7.0.0",
|
||||
"eslint-config-custom": "workspace:*",
|
||||
"eslint": "7.32.0",
|
||||
"@acme/tsconfig": "workspace:*",
|
||||
"tsconfig": "workspace:*",
|
||||
"@types/node": "^17.0.12",
|
||||
"@types/react": "^18.0.22",
|
||||
"@types/react-dom": "^18.0.7",
|
||||
|
|
|
@ -11,10 +11,10 @@
|
|||
"type-check": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@acme/api": "workspace:*",
|
||||
"@acme/auth": "workspace:*",
|
||||
"@acme/db": "workspace:*",
|
||||
"@acme/tailwind-config": "workspace:*",
|
||||
"@acme/api": "*",
|
||||
"@acme/auth": "*",
|
||||
"@acme/db": "*",
|
||||
"@acme/tailwind-config": "*",
|
||||
"@tanstack/react-query": "^4.16.1",
|
||||
"@trpc/client": "^10.1.0",
|
||||
"@trpc/next": "^10.1.0",
|
||||
|
@ -35,7 +35,6 @@
|
|||
"eslint-config-next": "13.0.4",
|
||||
"postcss": "^8.4.19",
|
||||
"tailwindcss": "^3.2.4",
|
||||
"typescript": "^4.9.3",
|
||||
"@acme/tsconfig": "workspace:*"
|
||||
"typescript": "^4.9.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,37 +1,12 @@
|
|||
{
|
||||
"extends": "@acme/tsconfig/t3.json",
|
||||
"extends": "../../tsconfig.json",
|
||||
"exclude": [],
|
||||
"include": [
|
||||
"next-env.d.ts",
|
||||
"node_modules/@acme/auth/next-auth.d.ts",
|
||||
"**/*.ts",
|
||||
"**/*.tsx",
|
||||
"**/*.cjs",
|
||||
"**/*.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/*"
|
||||
]
|
||||
}
|
||||
}
|
||||
"**/*.mjs"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
"@babel/core": "^7.0.0",
|
||||
"eslint-config-custom": "workspace:*",
|
||||
"eslint": "7.32.0",
|
||||
"@acme/tsconfig": "workspace:*",
|
||||
"tsconfig": "workspace:*",
|
||||
"@types/node": "^17.0.12",
|
||||
"@types/react": "^18.0.22",
|
||||
"@types/react-dom": "^18.0.7",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"private": true,
|
||||
"workspaces": [
|
||||
"apps/*",
|
||||
"packages/**/*"
|
||||
"packages/*"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "turbo build",
|
||||
|
|
|
@ -5,7 +5,6 @@ import { authRouter } from "./auth";
|
|||
export const appRouter = router({
|
||||
post: postRouter,
|
||||
auth: authRouter,
|
||||
namegen: nameGenRouter,
|
||||
});
|
||||
|
||||
// export type definition of API
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
import { protectedProcedure, publicProcedure, router } from "../../trpc";
|
||||
|
||||
export const nameGenRouter = router ({
|
||||
});
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "@acme/eslint-config",
|
||||
"name": "config",
|
||||
"version": "1.0.0",
|
||||
"main": "index.js",
|
||||
"license": "MIT",
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "@acme/tsconfig",
|
||||
"name": "tsconfig",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"files": [
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"eslint": "^7.32.0",
|
||||
"eslint-config-custom": "workspace:*",
|
||||
"react": "^18.2.0",
|
||||
"@acme/tsconfig": "workspace:*",
|
||||
"tsconfig": "workspace:*",
|
||||
"typescript": "^4.5.2"
|
||||
}
|
||||
}
|
||||
|
|
1168
pnpm-lock.yaml
1168
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -1,3 +1,3 @@
|
|||
packages:
|
||||
- "apps/*"
|
||||
- "packages/**/*"
|
||||
- "packages/*"
|
||||
|
|
Loading…
Reference in New Issue