Compare commits
2 Commits
1acfede68f
...
1c2fab2537
Author | SHA1 | Date |
---|---|---|
pegasust | 1c2fab2537 | |
pegasust | d005885a50 |
|
@ -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",
|
||||||
"tsconfig": "workspace:*",
|
"@acme/tsconfig": "workspace:*",
|
||||||
"typescript": "^4.8.4"
|
"typescript": "^4.8.4"
|
||||||
},
|
},
|
||||||
"ct3aMetadata": {
|
"ct3aMetadata": {
|
||||||
|
|
|
@ -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",
|
||||||
"tsconfig": "workspace:*",
|
"@acme/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",
|
||||||
|
|
|
@ -11,10 +11,10 @@
|
||||||
"type-check": "tsc --noEmit"
|
"type-check": "tsc --noEmit"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@acme/api": "*",
|
"@acme/api": "workspace:*",
|
||||||
"@acme/auth": "*",
|
"@acme/auth": "workspace:*",
|
||||||
"@acme/db": "*",
|
"@acme/db": "workspace:*",
|
||||||
"@acme/tailwind-config": "*",
|
"@acme/tailwind-config": "workspace:*",
|
||||||
"@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,6 +35,7 @@
|
||||||
"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:*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,37 @@
|
||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "@acme/tsconfig/t3.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/*"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -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",
|
||||||
"tsconfig": "workspace:*",
|
"@acme/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",
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"private": true,
|
"private": true,
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
"apps/*",
|
"apps/*",
|
||||||
"packages/*"
|
"packages/**/*"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "turbo build",
|
"build": "turbo build",
|
||||||
|
|
|
@ -5,6 +5,7 @@ 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
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
import { protectedProcedure, publicProcedure, router } from "../../trpc";
|
||||||
|
|
||||||
|
export const nameGenRouter = router ({
|
||||||
|
});
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "config",
|
"name": "@acme/eslint-config",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "tsconfig",
|
"name": "@acme/tsconfig",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"files": [
|
"files": [
|
||||||
|
|
|
@ -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",
|
||||||
"tsconfig": "workspace:*",
|
"@acme/tsconfig": "workspace:*",
|
||||||
"typescript": "^4.5.2"
|
"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:
|
packages:
|
||||||
- "apps/*"
|
- "apps/*"
|
||||||
- "packages/*"
|
- "packages/**/*"
|
||||||
|
|
Loading…
Reference in New Issue