forked from knapsack-cloud/example-ds-1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.01 KB
/
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": "example-ds-1",
"version": "1.0.0",
"description": "",
"scripts": {
"watch:libs": "lerna watch --ignore '@my-org/*-knapsack' -- lerna run build --scope=\\$LERNA_PACKAGE_NAME",
"start:ks-core": "lerna run start --scope=@my-org/core-knapsack",
"start:ks-brand-1": "sleep 3 && lerna run start --scope=@my-org/brand-1-knapsack",
"start:ks-brand-2": "sleep 6 && lerna run start --scope=@my-org/brand-2-knapsack",
"start:ks": "run-p start:ks-*",
"start": "run-p start:ks watch:libs",
"build": "lerna run build"
},
"keywords": [],
"author": "KnapsackBot [email protected]",
"license": "ISC",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"lerna": "^7.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0"
}
}