-
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) · 780 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 780 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": "reveal-slides-web",
"version": "1.0.0",
"description": "Web-based visual slide editor with reveal.js",
"private": true,
"workspaces": [
"frontend",
"backend",
"shared"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "npm run dev --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"build": "npm run build:shared && npm run build:backend && npm run build:frontend",
"build:shared": "npm run build --workspace=shared",
"build:backend": "npm run build --workspace=backend",
"build:frontend": "npm run build --workspace=frontend",
"start": "npm run start --workspace=backend"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}