-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (23 loc) · 1.08 KB
/
package.json
File metadata and controls
24 lines (23 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "discarr-monorepo",
"private": true,
"version": "2.0.0",
"description": "Monorepo for Discarr: Discord + Web UI to manage *arr stack",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "npm run build -w @discarr/core && npm run build -w @discarr/discord-bot && npm run build -w @discarr/server && npm run build -w @discarr/web",
"dev": "npm run dev -w @discarr/server",
"dev:web": "npm run dev -w @discarr/web",
"start": "npm start -w @discarr/server",
"start:bot": "npm start -w @discarr/discord-bot",
"typecheck": "npm run typecheck -w @discarr/core && npm run typecheck -w @discarr/discord-bot && npm run typecheck -w @discarr/server && npm run typecheck -w @discarr/web",
"lint": "npm run lint -w @discarr/core && npm run lint -w @discarr/discord-bot && npm run lint -w @discarr/server && npm run lint -w @discarr/web",
"format": "npm run format -w @discarr/core && npm run format -w @discarr/discord-bot && npm run format -w @discarr/server && npm run format -w @discarr/web"
},
"engines": {
"node": ">=18.0.0"
}
}