-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 859 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 859 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": "it-helpdesk",
"private": true,
"version": "0.1.0",
"packageManager": "npm@11.6.2",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build --workspace @it-helpdesk/shared && npm run build --workspace @it-helpdesk/ui && npm run build --workspace @it-helpdesk/api && npm run build --workspace @it-helpdesk/web",
"dev:mock": "npm run dev:mock --workspace @it-helpdesk/web",
"dev": "node ./scripts/run-dev.mjs",
"dev:entra": "node ./scripts/run-dev-entra.mjs",
"dev:multi": "node ./scripts/run-dev-multi.mjs",
"dev:api": "npm run dev --workspace @it-helpdesk/api --",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"engines": {
"node": "22.x"
},
"devDependencies": {
"azurite": "^3.33.0"
}
}