-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 914 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "acroform-builder",
"version": "1.0.0",
"private": true,
"workspaces": [
"client",
"server",
"shared",
"electron"
],
"scripts": {
"dev": "npm run dev --workspace=server & npm run dev --workspace=client",
"build": "npm run build --workspaces",
"start": "npm run start --workspace=server",
"install:all": "npm install",
"electron:dev": "concurrently -n server,client,electron -c blue,green,yellow \"npm run dev --workspace=server\" \"npm run dev --workspace=client\" \"wait-on http://localhost:5173 http://localhost:3001 && npm run dev --workspace=electron\"",
"electron:build": "npm run build --workspace=shared && npm run build --workspace=server && npm run build --workspace=client && npm run build --workspace=electron"
},
"devDependencies": {
"app-builder-bin": "^5.0.0-alpha.10",
"concurrently": "^9.1.0",
"wait-on": "^8.0.2"
}
}