forked from aperkaz/yarn-workspaces-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 825 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
25
26
27
28
29
30
31
32
{
"name": "yarn-workspaces-electron",
"version": "1.0.0",
"private": true,
"engines": {
"node": "14.17.0"
},
"workspaces": [
"electron-backend",
"shared",
"frontend"
],
"nohoist": [
"**/electron",
"**/electron/**",
"**/jest",
"**/jest/**"
],
"scripts": {
"modules:watch": "yarn wsrun --stages --done-criteria=\"Watching for file\" watch",
"modules:build": "yarn wsrun --stages build",
"watch": "yarn --cwd electron-backend start",
"build": "yarn modules:build; yarn --cwd electron-backend dist"
},
"description": "Yarn workspaces with electron, for fun and profit",
"repository": "[email protected]:aperkaz/yarn-workspaces-electron.git",
"author": "alain <[email protected]>",
"license": "MIT",
"devDependencies": {
"wsrun": "^5.2.4"
}
}