-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.94 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
{
"name": "kaijs",
"version": "1.0.0",
"private": true,
"description": "JS implementation of kai",
"main": "index.js",
"scripts": {
"dev:listener-umb": "nodemon --config dev-listener-umb.json",
"start:listener-umb": "source ./env.sh && node build/listener_umb.js | ./node_modules/.bin/pino-pretty",
"dev:listener-fedora": "nodemon --config dev-listener-fedora.json",
"start:listener-fedora": "source ./env.sh && node build/listener_fedora.js | ./node_modules/.bin/pino-pretty",
"dev:loader": "nodemon --config dev-loader.json",
"dev:loader-opensearch": "nodemon --config dev-loader-opensearch.json",
"start:loader": "source ./env.sh && node build/loader.js | ./node_modules/.bin/pino-pretty",
"start:loader-opensearch": "source ./env.sh && node build/loader_opensearch.js | ./node_modules/.bin/pino-pretty",
"build": "rimraf ./build && tsc"
},
"author": "Andrei Stepanov",
"license": "LGPLv3+",
"dependencies": {
"@types/amqplib": "^0.10.1",
"@types/debug": "^4.1.8",
"@types/lodash": "^4.14.195",
"@types/uuid": "^9.0.2",
"@opensearch-project/opensearch": "^2.2.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"amqplib": "^0.10.3",
"debug": "^4.3.2",
"file-queue": "^0.3.0",
"graceful-fs": "^4.2.6",
"joi": "^17.9.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mongodb": "^5.7.0",
"node-cron": "^3.0.2",
"pino": "^8.14.1",
"pino-pretty": "^10.1.0",
"retry": "^0.13.1",
"rhea": "^3.0.2",
"rhea-promise": "^3.0.1",
"simple-git": "^3.19.1",
"uuid": "^9.0.0",
"xmlrpc": "^1.3.2"
},
"devDependencies": {
"@types/cron": "^2.0.1",
"@types/js-yaml": "^4.0.2",
"@types/mongodb": "^4.0.7",
"@types/node": "^20.4.4",
"@types/node-cron": "^3.0.8",
"@types/retry": "^0.12.1",
"@types/xmlrpc": "^1.3.7",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}