-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.74 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "pm2.web",
"version": "1.5.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/oxdev03/pm2.web"
},
"engines": {
"node": ">= 24.0.0"
},
"author": {
"name": "oxdev03"
},
"license": "GPL-3.0-only",
"description": "pm2.web is a web-based application designed to monitor and manage processes running on your server using the PM2 process manager",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev dev:db dev:pm2",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "turbo run format",
"format:check": "turbo run format:check",
"start": "turbo run start",
"test": "turbo run test",
"graph": "turbo run build --graph",
"build:apps": "turbo run build --filter=./apps/*",
"build:packages": "turbo run build --filter=./packages/*",
"build:apps:dashboard": "turbo run build --filter=dashboard",
"build:apps:backend": "turbo run build --filter=backend",
"dev:apps:dashboard": "turbo run dev --filter=dashboard",
"dev:turbo:apps:dashboard": "turbo run dev:turbo --filter=dashboard",
"dev:apps:backend": "turbo run dev --filter=backend",
"start:apps:dashboard": "turbo run start --filter=dashboard",
"start:apps:backend": "turbo run start --filter=backend",
"test:apps:dashboard": "turbo run test --filter=dashboard"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@pm2.web/eslint-config": "workspace:*",
"@pm2.web/typescript-config": "workspace:*",
"eslint": "^10.5.0",
"globals": "^17.6.0",
"prettier": "^3.8.4",
"turbo": "^2.9.18",
"typescript-eslint": "^8.61.1"
},
"packageManager": "pnpm@11.8.0"
}