forked from visa/moloch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 6.89 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "moloch",
"version": "1.0.0",
"description": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aol/moloch.git"
},
"dependencies": {
"@elastic/elasticsearch": "^7.9.1",
"async": "^2.6.3",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"bson": "^1.1.5",
"chalk": "^4.1.0",
"connect-timeout": "^1.7.0",
"console-stamp": "^0.2.9",
"cryptiles": ">=4.1.2",
"csv": "^5.3.2",
"elasticsearch": "^16.7.1",
"express": "^4.17.1",
"font-awesome": "^4.7.0",
"fstream": "^1.0.12",
"glob": "^7.1.6",
"helmet": "^3.23.3",
"hoek": "^4.2.1",
"iniparser": "http://github.com/awick/node-iniparser/tarball/master",
"ioredis": "^4.19.0",
"lodash": "^4.17.20",
"lodash.template": "^4.5.0",
"lru-cache": "^4.0.1",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"native-dns": "^0.7.0",
"natives": "^1.1.6",
"notifme-sdk": "^1.10.0",
"on-headers": "^1.0.2",
"passport": "^0.3.2",
"passport-http": "^0.3.0",
"pug": "^2.0.4",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"sortablejs": "^1.12.0",
"splunk-sdk": "^1.9.0",
"sqlite3": "^4.2.0",
"stylus": "^0.54.8",
"unzipper": "^0.10.11",
"uuidv4": "^5.0.1",
"vue": "^2.6.12",
"vue-axios": "^2.1.5",
"vue-moment": "^4.1.0",
"vue-router": "^3.4.8",
"vue-server-renderer": "^2.6.12",
"vue-template-compiler": "^2.6.12",
"vuex": "^3.5.1"
},
"scripts": {
"lint": "eslint --ext .js,.vue parliament viewer notifiers wiseService capture/plugins",
"lint-fix": "eslint --fix --ext .js,.vue parliament viewer notifiers wiseService",
"viewer:addtestuser": "cd viewer && node addUser.js -c ../tests/config.test.ini -n testuser admin admin admin --admin --packetSearch",
"viewer:build": "cd viewer && node vueapp/build/build.js",
"viewer:bundle": "webpack -d --progress --config viewer/vueapp/build/webpack.dev.conf.js",
"viewer:start": "cd viewer && node viewer.js -c ../config.ini",
"previewer:start": "npm run viewer:build",
"viewer:dev": "(cd viewer && nodemon viewer.js -c ../tests/config.test.ini -n testuser) & webpack -d --no-stats --watch --progress --config viewer/vueapp/build/webpack.dev.conf.js",
"viewer:test": "(cd viewer && nodemon viewer.js --debug -c ../tests/config.test.ini -n test) & webpack -d --no-stats --watch --progress --config viewer/vueapp/build/webpack.dev.conf.js",
"viewer:testuserdebug": "(cd viewer && nodemon viewer.js -c ../tests/config.test.ini -n testuser --debug) & webpack -d --no-stats --watch --progress --config viewer/vueapp/build/webpack.dev.conf.js",
"viewer:multies": "cd viewer && node multies.js -c ../tests/config.test.ini -n testmulties",
"viewer:testmultiviewer": "(cd viewer && nodemon viewer.js -c ../tests/config.test.ini -n testmulties) & webpack -d --no-stats --watch --progress --config viewer/vueapp/build/webpack.dev.conf.js",
"viewer:doc": "jsdoc2md --partial jsdoc/*.hbs --helper jsdoc/dochelpers.js --files viewer/*.js > ../arkimeweb/_wiki/api_docs.md",
"viewer:lint": "eslint --ext .js,.vue viewer capture/plugins",
"viewer:lint-fix": "eslint --fix --ext .js,.vue viewer",
"parliament:build": "cd parliament && node vueapp/build/build.js",
"parliament:bundle": "webpack -d --progress --config parliament/vueapp/build/webpack.dev.conf.js",
"parliament:start": "cd parliament && node parliament.js",
"preparliament:start": "npm run parliament:build",
"parliament:dev": "(cd parliament && nodemon parliament.js --pass admin --port 8008 -c ./parliament.dev.json) & webpack -d --no-stats --watch --progress --config parliament/vueapp/build/webpack.dev.conf.js",
"parliament:debug": "(cd parliament && nodemon parliament.js --pass admin --port 8008 -c ./parliament.dev.json --debug) & webpack -d --no-stats --watch --progress --config parliament/vueapp/build/webpack.dev.conf.js",
"parliament:lint": "eslint --ext .js,.vue parliament",
"parliament:lint-fix": "eslint --fix --ext .js,.vue parliament",
"parliament:noauth": "(cd parliament && nodemon parliament.js --port 8008 -c ./parliament.dev.json) & webpack -d --no-stats --watch --progress --config parliament/vueapp/build/webpack.dev.conf.js",
"wise:build": "cd wiseService && node vueapp/build/build.js",
"wise:bundle": "webpack -d --progress --config wiseService/vueapp/build/webpack.dev.conf.js",
"wise:start": "cd wiseService && node wiseService.js -c ../tests/config.test.ini",
"wise:lint": "eslint --ext .js,.vue wiseService",
"wise:lint-fix": "eslint --fix --ext .js,.vue wiseService",
"prewise:start": "npm run wise:build",
"wise:doc": "jsdoc2md --partial jsdoc/*.hbs --helper jsdoc/dochelpers.js --files wiseService/*.js > ../arkimeweb/_wiki/api_wise.md",
"wise:dev": "(cd wiseService && nodemon wiseService.js -c ../tests/config.test.json --webconfig) & webpack -d --no-stats --watch --progress --config wiseService/vueapp/build/webpack.dev.conf.js",
"wise:devdebug": "(cd wiseService && nodemon wiseService.js -c ../tests/config.test.json --webconfig --debug --debug) & webpack -d --no-stats --watch --progress --config wiseService/vueapp/build/webpack.dev.conf.js"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"autoprefixer": "^9.8.6",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"bootstrap": "^4.5.3",
"bootstrap-vue": "^2.18.1",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^5.2.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^3.2.0",
"js-yaml": "^3.14.0",
"jsdoc-to-markdown": "^6.0.1",
"node-notifier": "^8.0.1",
"nodemon": "^2.0.3",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"ora": "^5.1.0",
"portfinder": "^1.0.13",
"postcss-import": "^12.0.1",
"postcss-loader": "^4.0.4",
"postcss-url": "^8.0.0",
"semver": "^7.3.2",
"shelljs": "^0.8.4",
"terser-webpack-plugin": "^2.3.8",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.4",
"vue-style-loader": "^4.1.2",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0"
}
}