-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
68 lines (68 loc) · 2.21 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"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-dashboard && npm run build",
"build:sniffer": "cd ./traffic-sniffer && npm run build",
"format:dashboard": "cd ./traffic-dashboard && npm run format",
"format:sniffer": "cd ./traffic-sniffer && npm run format",
"build": "concurrently --kill-others \"cd ./traffic-sniffer && npm run build\" \"cd ./traffic-dashboard && npm run build\"",
"dev": "concurrently --kill-others \"cd ./traffic-sniffer && npm run dev\" \"cd ./traffic-dashboard && npm run dev\"",
"dev2": "concurrently --kill-others \"cd ./traffic-sniffer && npm run dev\" \"cd ./traffic-dashboard && npm run dev2\"",
"demo": "concurrently --kill-others \"nodemon dummy-server.js\" \"npm run dev\"",
"format": "prettier -w . && git add .",
"test": "cd ./traffic-sniffer && npm test",
"prepare": "husky install",
"postinstall": "husky install"
},
"author": "Ido David",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"concurrently": "^8.2.0",
"copy-to-clipboard": "^3.3.3",
"kill-port": "^2.0.1",
"nodemon": "^3.0.1",
"open": "^9.1.0",
"ps-tree": "^1.2.0",
"swagger-jsdoc": "^6.2.8",
"traffic-dashboard": "file:traffic-dashboard",
"traffic-sniffer": "file:traffic-sniffer",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"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": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.33.0",
"express": "^4.18.2",
"husky": "^8.0.0",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.3"
}
}