forked from lindylearn/unclutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 847 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
{
"name": "unclutter-library",
"description": "Monorepo for the Unclutter open-source project",
"private": true,
"workspaces": [
"common/*",
"apps/*"
],
"scripts": {
"dev:components": "yarn --cwd common/library-components watch",
"dev:replicache": "yarn --cwd common/replicache-nextjs watch",
"dev:heatmap": "yarn --cwd common/heatmap watch",
"dev": "npm-run-all --parallel dev:*",
"build:components": "yarn --cwd common/library-components build",
"build:replicache": "yarn --cwd common/replicache-nextjs build",
"build:heatmap": "yarn --cwd common/heatmap build",
"build": "npm-run-all build:*",
"postinstall": "patch-package"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"patch-package": "^6.4.7"
}
}