-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 817 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 817 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
25
26
{
"name": "db-mover-mvp",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://github.com/JC-Coder/db-mover#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JC-Coder/db-mover.git"
},
"bugs": {
"url": "https://github.com/JC-Coder/db-mover/issues"
},
"workspaces": [
"server",
"client"
],
"scripts": {
"start": "concurrently \"npm run start --workspace=server\" \"npm run dev --workspace=client\"",
"dev": "concurrently \"npm run dev --workspace=server\" \"npm run dev --workspace=client\"",
"build": "npm run build --workspace=client && npm run build --workspace=server",
"install:all": "npm install && npm install --workspace=server && npm install --workspace=client"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}