-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1022 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1022 Bytes
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
{
"name": "@repo/docs",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "next build",
"start": "next start",
"dev": "next dev -p 4001",
"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/ui": "workspace:*",
"@repo/utils": "workspace:*",
"next": "14.2.35",
"nextra": "3.0.15",
"nextra-theme-blog": "3.0.15",
"nextra-theme-docs": "3.0.15",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@repo/tsconfig": "workspace:*",
"@types/node": "20.14.15",
"@types/react": "^19.0.7",
"@types/react-dom": "18.3.1",
"typescript": "5.5.4",
"autoprefixer": "10.4.27",
"postcss": "8.4.49",
"tailwindcss": "3.4.19"
}
}