-
Notifications
You must be signed in to change notification settings - Fork 656
/
package.json
116 lines (116 loc) · 3.79 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "ntopng",
"version": "5.7.0",
"description": "Network analysis tool, used to report problems, communications and statistics about the network itself. This packages is used to build the Web GUI part (client).",
"main": "http_src/ntopng.js",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"css:lint": "stylelint './http_src/**/*.scss' || true",
"js:lint": "eslint './http_src/**/*.js'",
"watch": "rollup -c -w",
"build:ntopngjs": "rollup -c --prod",
"build": "npm run css:lint && webpack --mode=production --config webpack.prod.js; rm -fr httpdocs/dist/*; mv httpdocs/tmp-dist/* httpdocs/dist;rollup -c --prod",
"build:dev": "npm run css:lint && webpack --mode=development --config webpack.prod.js; rm -fr httpdocs/dist/*; mv httpdocs/tmp-dist/* httpdocs/dist;rollup -c",
"detect_circular_link": "madge --circular --extensions js http_src httpdocs "
},
"repository": {
"type": "git",
"url": "git+https://github.com/ntop/ntopng.git"
},
"author": "Matteo Biscosi",
"license": "ISC",
"bugs": {
"url": "https://github.com/ntop/ntopng/issues"
},
"homepage": "https://github.com/ntop/ntopng#readme",
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@squoosh/lib": "^0.4.0",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.6.0",
"css-minify": "^2.0.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"cubism": "^1.6.0",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"file-loader": "^6.2.0",
"i": "^0.3.7",
"image-minimizer-webpack-plugin": "^3.2.3",
"image-webpack-loader": "^8.1.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"install": "^0.13.0",
"mini-css-extract-plugin": "^2.5.3",
"minimist": "^1.2.6",
"node-sass": "^7.0.1",
"onchange": "^7.1.0",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"postcss-loader": "^6.2.1",
"postcss-scss": "^4.0.3",
"regenerator-runtime": "^0.13.9",
"rollup": "^2.79.1",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"rollup-watch": "^4.3.1",
"sass-loader": "^12.5.0",
"source-map-loader": "^3.0.1",
"stylelint": "^14.5.0",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@babel/core": "^7.18.2",
"@fortawesome/fontawesome-free": "^6.5.1",
"@googlemaps/markerclusterer": "^1.0.24",
"@popperjs/core": "^2.11.2",
"apexcharts": "^3.33.1",
"bootstrap": "^5.3.0",
"bootstrap-loader": "^3.0.4",
"crossfilter2": "^1.5.4",
"d3": "^3.5.17",
"d3-array": "^3.1.1",
"d3-chord": "^3.0.1",
"d3-collection": "^1.0.7",
"d3-sankey": "^0.12.3",
"d3-shape": "^3.1.0",
"d3v7": "npm:d3@^7.6.1",
"datatables.net-buttons-dt": "^2.3.4",
"datatables.net-colreorder-dt": "^1.6.1",
"datatables.net-dt": "^1.11.5",
"datatables.net-responsive-dt": "^2.4.0",
"dc": "^4.2.7",
"dygraphs": "^2.2.1",
"flatpickr": "^4.6.11",
"jquery": "^3.6.0",
"jquery-ui": "^1.13.2",
"jquery.are-you-sure": "^1.9.0",
"leaflet": "^1.6.0",
"leaflet.markercluster": "^1.5.3",
"madge": "^5.0.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"nvd3": "^1.8.6",
"peity": "^3.3.0",
"popper.js": "^1.16.1",
"select2": "^4.1.0-rc.0",
"select2-bootstrap-5-theme": "^1.3.0",
"sortablejs": "^1.15.1",
"store-js": "^2.0.4",
"vis-network": "^9.1.6",
"vue": "3.2.37"
}
}