forked from Oferlis/sharkio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 KB
/
package.json
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
{
"name": "@idodav/sharkio",
"version": "0.0.1",
"description": "Micro service network monitoring and development tool",
"main": "index.js",
"bundledDependencies": true,
"bin": {
"sharkio": "index.mjs"
},
"scripts": {
"cli": "node ./index.mjs",
"dashboard": "cd ./traffic-dashboard && npm run dev",
"sniffer": "cd ./traffic-sniffer && npm run dev",
"build:dashboard": "cd ./traffic-sniffer && npm run build",
"build:sniffer": "cd ./traffic-sniffer && npm run build",
"build": "concurrently --kill-others \"cd ./traffic-sniffer && npm run dev\" \"cd ./traffic-dashboard && npm run build\"",
"dev": "concurrently --kill-others \"cd ./traffic-sniffer && npm run dev\" \"cd ./traffic-dashboard && npm run dev\"",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"author": "Ido David",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"concurrently": "^8.2.0",
"kill-port": "^2.0.1",
"nodemon": "^2.0.22",
"open": "^9.1.0",
"traffic-dashboard": "file:traffic-dashboard",
"traffic-sniffer": "file:traffic-sniffer",
"yargs": "^17.7.2"
},
"files": [
"index.js",
"package.json",
"node_modules",
"traffic-sniffer",
"traffic-dashboard"
],
"bundleDependencies": [
"axios",
"kill-port",
"traffic-dashboard",
"traffic-sniffer",
"yargs"
],
"devDependencies": {
"husky": "^8.0.3"
}
}