-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.28 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
{
"name": "fe-lab",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"check-types": "turbo run check-types",
"react": "turbo run dev --filter=react",
"typescript": "turbo run dev --filter=typescript",
"next": "turbo run dev --filter=next.js",
"blog-web": "turbo run dev --filter=@blog/web",
"blog-build": "turbo run build --filter=@blog/web",
"socket-server": "turbo run dev --filter=socket-server",
"socket": "concurrently \"pnpm socket-server\" \"pnpm react\""
},
"devDependencies": {
"prettier": "^3.5.0",
"turbo": "^2.5.3"
},
"packageManager": "pnpm@10.10.0",
"engines": {
"node": ">=20"
},
"pnpm": {
"overrides": {
"@babel/runtime": "7.29.2",
"@tootallnate/once": "3.0.1",
"dompurify": "3.3.3",
"flatted": "3.4.2",
"form-data@2": "2.5.5",
"mdast-util-to-hast": "13.2.1",
"picomatch@4": "4.0.4",
"qs@6": "6.15.1",
"tough-cookie@2": "4.1.4"
},
"onlyBuiltDependencies": [
"esbuild",
"msw",
"sharp",
"supabase"
],
"ignoredBuiltDependencies": [
"msw"
]
},
"dependencies": {
"concurrently": "^9.2.0",
"hanspell": "^0.9.7"
}
}