-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 892 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 892 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
{
"private": true,
"packageManager": "pnpm@10.28.1",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:frontend": "pnpm --filter frontend dev",
"build:frontend": "pnpm --filter frontend build",
"dev:backend": "pnpm --filter backend dev",
"build:backend": "pnpm --filter backend build",
"lint:fix": "pnpm --filter frontend lint:fix && pnpm --filter backend lint:fix",
"postinstall": "pnpm --filter shared build"
},
"dependencies": {
"http-status-codes": "catalog:public",
"nanoid": "catalog:public"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:public",
"@types/node": "catalog:public",
"baseline-browser-mapping": "catalog:public",
"eslint": "catalog:public",
"tsdown": "catalog:public",
"tsx": "catalog:public",
"type-fest": "catalog:public",
"typescript": "catalog:public"
}
}