forked from X-Profiler/xtransit-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 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
{
"name": "xtransit-server",
"version": "0.0.0",
"description": "server for xtransit",
"main": "dispatch.js",
"scripts": {
"start": "pm2 kill && pm2 start --name xtransit-server dispatch.js",
"stop": "pm2 delete xtransit-server",
"dev": "nodemon dispatch.js",
"lint": "eslint config controller handler lib middleware proxy service *.js --fix",
"autod": "autod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyj1991/xtransit-server.git"
},
"keywords": [
"xprofiler",
"easy-monitor",
"xtransit"
],
"author": "yeekwanvong@gmail.com",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/hyj1991/xtransit-server/issues"
},
"homepage": "https://github.com/hyj1991/xtransit-server#readme",
"devDependencies": {
"autod": "^3.1.0",
"eslint": "^7.0.0",
"eslint-config-egg": "^8.0.1",
"nodemon": "^2.0.3"
},
"dependencies": {
"address": "^1.1.2",
"agentkeepalive": "^4.1.2",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^8.0.8",
"mini-logger": "^1.1.3",
"urllib": "^2.34.2",
"uuid": "^8.0.0",
"ws": "^7.3.0"
}
}