-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.09 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
{
"private": true,
"engines": {
"yarn": ">=1.7.0 <2",
"node": ">=16"
},
"scripts": {
"clean": "lerna clean && rimraf node_modules",
"build:browser": "lerna run build --ignore scribe-electron",
"build:electron": "lerna run build --ignore browser --ignore scribe-electron && yarn --cwd applications/electron build:highMemory",
"postinstall": "theia check:theia-version",
"build:dev": "lerna run development",
"build:prod": "lerna run production",
"start:browser": "yarn --cwd applications/browser start",
"start:electron": "yarn --cwd applications/electron start",
"watch:browser": "lerna run --parallel watch --ignore scribe-electron ",
"watch:electron": "lerna run --parallel watch --ignore scribe-browser"
},
"devDependencies": {
"concurrently": "^8.2.2",
"lerna": "2.4.0"
},
"resolutions": {
"@types/puppeteer": "^5.4.0",
"@yarnpkg/parsers": "3.0.0-rc.44",
"**/multer": "1.4.4-lts.1",
"**/nan": "2.18.0",
"**/cpu-features": "0.0.9",
"**/**/nsfw": "2.2.5"
},
"workspaces": [
"applications/*",
"packages/*"
]
}