-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "@repo/web",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 4000 --turbo",
"build": "next build",
"start": "next start",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next",
"update-deps": "bun run recursive-update",
"recursive-update": "bun x npm-check-updates -u && bun install && turbo run update-deps --parallel"
},
"dependencies": {
"@repo/auth": "workspace:*",
"@repo/ui": "workspace:*",
"@repo/ux": "workspace:*",
"@repo/utils": "workspace:*",
"@t3-oss/env-nextjs": "0.10.1",
"next": "14.2.35",
"next-app-theme": "0.1.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "3.23.8",
"zustand": "^5.0.3"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@next/bundle-analyzer": "14.2.35",
"@repo/tsconfig": "workspace:*",
"@types/node": "20.14.15",
"@types/react": "^19.0.7",
"@types/react-dom": "18.3.7",
"autoprefixer": "10.4.24",
"postcss": "8.4.49",
"tailwindcss": "3.4.19",
"typescript": "5.5.4"
}
}