generated from CodeGuide-dev/codeguide-starter-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 794 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "git-search-monorepo",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently \"pnpm --filter @git-search/web dev\" \"pnpm --filter @git-search/api dev\" --names \"web,api\" --prefix-colors \"cyan,yellow\"",
"dev:web": "pnpm --filter @git-search/web dev",
"dev:api": "pnpm --filter @git-search/api dev",
"build": "pnpm --filter @git-search/web build",
"build:web": "pnpm --filter @git-search/web build",
"build:api": "pnpm --filter @git-search/api build",
"start": "pnpm --filter @git-search/web start",
"lint": "pnpm --filter @git-search/web lint",
"type-check": "pnpm --filter @git-search/web type-check"
},
"devDependencies": {
"concurrently": "^9.2.0"
}
}