forked from t3-oss/create-t3-turbo
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) 路 1.04 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) 路 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@yocxo/auth",
"version": "0.1.0",
"private": true,
"type": "module",
"exports": {
".": {
"react-server": "./src/index.rsc.ts",
"default": "./src/index.ts"
},
"./env": "./env.ts"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf .turbo node_modules",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@yocxo/db": "workspace:*",
"@auth/drizzle-adapter": "^0.8.1",
"@t3-oss/env-nextjs": "^0.9.2",
"next": "^16.1.7",
"next-auth": "5.0.0-beta.16",
"react": "18.2.0",
"react-dom": "18.2.0",
"zod": "^3.22.5"
},
"devDependencies": {
"@yocxo/eslint-config": "workspace:*",
"@yocxo/prettier-config": "workspace:*",
"@yocxo/tsconfig": "workspace:*",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"eslintConfig": {
"root": true,
"extends": [
"@yocxo/eslint-config/base"
]
},
"prettier": "@yocxo/prettier-config"
}