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
58 lines (58 loc) 路 1.65 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) 路 1.65 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@yocxo/nextjs",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm with-env next build",
"clean": "git clean -xdf .next .turbo node_modules",
"dev": "pnpm with-env next dev -p 3003",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "dotenv -v SKIP_ENV_VALIDATION=1 next lint",
"start": "pnpm with-env next start",
"typecheck": "tsc --noEmit",
"with-env": "dotenv -e ../../.env --"
},
"dependencies": {
"@yocxo/api": "workspace:*",
"@yocxo/auth": "workspace:*",
"@yocxo/db": "workspace:*",
"@yocxo/ui": "workspace:*",
"@yocxo/validators": "workspace:*",
"@t3-oss/env-nextjs": "^0.9.2",
"@tanstack/react-query": "^5.29.0",
"@trpc/client": "11.0.0-rc.334",
"@trpc/react-query": "11.0.0-rc.334",
"@trpc/server": "11.0.0-rc.334",
"geist": "^1.3.0",
"next": "^16.1.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"superjson": "2.2.1",
"zod": "^3.22.5"
},
"devDependencies": {
"@yocxo/eslint-config": "workspace:*",
"@yocxo/prettier-config": "workspace:*",
"@yocxo/tailwind-config": "workspace:*",
"@yocxo/tsconfig": "workspace:*",
"@types/node": "^20.12.5",
"@types/react": "^18.2.77",
"@types/react-dom": "^18.2.25",
"dotenv-cli": "^7.4.1",
"eslint": "^8.57.0",
"jiti": "^1.21.0",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
},
"eslintConfig": {
"root": true,
"extends": [
"@yocxo/eslint-config/base",
"@yocxo/eslint-config/nextjs",
"@yocxo/eslint-config/react"
]
},
"prettier": "@yocxo/prettier-config"
}