-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 960 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
{
"name": "@monorepo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm:dev:utils\" \"npm:dev:blog\" \"npm:dev:dashboard\"",
"check": "concurrently \"npm:test:*\" \"npm:typecheck:*\" --kill-others-on-fail",
"dev:utils": "npm run dev -w @monorepo/utils",
"dev:blog": "npm run dev -w @monorepo/blog",
"dev:dashboard": "npm run dev -w @monorepo/dashboard",
"test:utils": "npm run test -w @monorepo/utils",
"test:blog": "npm run test -w @monorepo/blog",
"test:dashboard": "npm run test -w @monorepo/dashboard",
"typecheck:utils": "npm run typecheck -w @monorepo/utils",
"typecheck:blog": "npm run typecheck -w @monorepo/blog",
"typecheck:dashboard": "npm run typecheck -w @monorepo/dashboard"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"apps/*",
"libs/*"
],
"devDependencies": {
"concurrently": "^7.2.1"
}
}