-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.92 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "pm2-hawkeye",
"version": "3.3.0",
"description": "Modern web dashboard for PM2 processes, metrics, and log files",
"type": "module",
"main": "lib/transport/server.js",
"scripts": {
"copy:assets": "cp media/favicon/* public/",
"build": "esbuild src/main.jsx --bundle --format=iife --target=es2020 --outfile=public/app.js && esbuild src/login.jsx --bundle --format=iife --target=es2020 --outfile=public/login.js && lessc public/styles.less public/styles.css && npm run copy:assets",
"start": "npm run build && node lib/transport/server.js",
"dev": "node esbuild.dev.mjs",
"inst": "yarn install && yarn --cwd server install && yarn --cwd client install",
"format": "prettier --write \"**/*.js\"",
"format:check": "prettier --check \"**/*.js\"",
"lint": "eslint .",
"test": "NODE_ENV=test mocha",
"copyright": "node ./tools/copyright.js",
"release": "node ./tools/release/release.js"
},
"author": "Christian Kellner",
"keywords": [
"pm2",
"logs",
"monitoring",
"dashboard"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/orangecoding/pm2-hawkeye/issues"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=7.0.0"
},
"dependencies": {
"better-sqlite3": "^12.8.0",
"cookie-parser": "^1.4.7",
"croner": "^10.0.1",
"dotenv": "^17.4.1",
"express": "^5.2.1",
"less": "^4.6.4",
"pm2": "^6.0.14",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"chai": "^6.2.2",
"chalk": "^5.6.2",
"concurrently": "^9.2.1",
"esbuild": "^0.28.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.4.0",
"mocha": "^11.7.5",
"node-fetch": "^3.3.2",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"supertest": "^7.2.2"
}
}