-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 838 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 838 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
27
28
29
30
31
32
33
34
{
"name": "@userhub/root",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"private": true,
"workspaces": [
"userhub-api",
"userhub-web"
],
"scripts": {
"dev:api": "npm run dev --workspace=userhub-api",
"dev:web": "npm run dev --workspace=userhub-web",
"test:api": "npm run test --workspace=userhub-api",
"dev": "concurrently \"npm run dev:api\" \"npm run dev:web\"",
"clean": "npm run clean --workspaces",
"build": "npm run build --workspaces",
"lint": "npm run lint --workspaces"
},
"keywords": [],
"author": "Juan JG Acosta - <juan_jg@hotmail.com>",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.2.1",
"rimraf": "^6.1.3"
},
"engines": {
"node": ">=24"
},
"packageManager": "npm@11.9.0"
}