-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 982 Bytes
/
package.json
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
{
"name": "@monorepo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "turbo run dev",
"check": "turbo run test typecheck",
"build": "turbo run build",
"dev:utils": "turbo run dev --filter=@monorepo/utils",
"dev:blog": "turbo run dev --filter=@monorepo/blog",
"dev:dashboard": "turbo run dev --filter=@monorepo/dashboard",
"test:utils": "turbo run test --filter=@monorepo/utils",
"test:blog": "turbo run test --filter=@monorepo/blog",
"test:dashboard": "turbo run test --filter=@monorepo/dashboard",
"typecheck:utils": "turbo run typecheck --filter=@monorepo/utils",
"typecheck:blog": "turbo run typecheck --filter=@monorepo/blog",
"typecheck:dashboard": "turbo run typecheck --filter=@monorepo/dashboard"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"apps/*",
"libs/*"
],
"devDependencies": {
"prettier": "^2.7.1",
"turbo": "^1.4.3"
}
}