-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.27 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
32
33
34
{
"name": "@ur-news/root",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^4.0.0",
"nodemon": "^2.0.12",
"typescript": "^4.4.3"
},
"scripts": {
"postinstall": "yarn run compile && yarn run bootstrap",
"bootstrap": "lerna bootstrap --force-local && lerna link --force-local",
"publish:locations": "lerna run publish --scope=@ur-news/locations",
"release": "lerna version --conventional-commits --yes && yarn publish:locations",
"build:locations": "lerna run build --scope=@ur-news/locations",
"watch:locations": "lerna run watch --scope=@ur-news/locations",
"start:server": "lerna run start --scope=@ur-news/server",
"watch:server": "lerna run watch --scope=@ur-news/server",
"build:web": "lerna run build --scope=@ur-news/web",
"watch:web": "lerna run watch --scope=@ur-news/web",
"watch": "lerna run watch --stream --parallel",
"build": "lerna run build --stream --parallel",
"compile": "lerna run compile --stream --parallel",
"start": "lerna run start --stream --parallel",
"test": "lerna run test"
},
"dependencies": {
"@ur-news/locations": "file:packages/locations",
"@ur-news/server": "file:packages/server",
"@ur-news/web": "file:packages/web"
}
}