-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
38 lines (38 loc) · 1.24 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
35
36
37
38
{
"private": true,
"name": "pagenote",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "yarn workspaces run test",
"prepare": "echo 'skip husky install'",
"dev": "yarn workspaces run dev",
"dev:web": "lerna run --scope=pagenote-web dev",
"dev:component": "lerna run --scope=@pagenote/component dev & lerna run --scope=example dev",
"dev:bridge": " lerna run --scope=@pagenote/bridge dev & yarn run dev:example",
"dev:action": " lerna run --scope=@pagenote/actions dev & yarn run dev:example",
"dev:example": " lerna run --scope=example dev",
"start": "yarn workspaces run start",
"build": "lerna run --scope=pagenote-web --include-dependencies build ",
"build:packages": "npx lerna exec --scope='@pagenote/*' --no-private --include-dependencies yarn build",
"build:ext-web": "yarn run build:packages && lerna run --scope=pagenote-web build-ext ",
"build-all": "lerna run build ",
"lint": "yarn workspaces run lint"
},
"engines": {
"node": ">=18"
},
"keywords": [],
"author": "",
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"husky": "8.0.0",
"lerna": "^8.0.2",
"typescript": "^5.3.3"
},
"license": "ISC"
}