-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
72 lines (72 loc) · 2.77 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
{
"name": "open-digger",
"version": "1.0.0",
"description": "OpenDigger for open source data mining",
"main": "lib/index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"build": "tsc",
"notebook": "npm run build && docker pull registry.cn-beijing.aliyuncs.com/open-digger/open-digger-js-notebook:1.0 && docker run -it --rm -p 8888:8888 -v $(pwd):/home/node/notebook registry.cn-beijing.aliyuncs.com/open-digger/open-digger-js-notebook:1.0",
"notebook:win": "npm run build && docker pull registry.cn-beijing.aliyuncs.com/open-digger/open-digger-js-notebook:1.0 && docker run -it --rm -p 8888:8888 -v %cd%:/home/node/notebook registry.cn-beijing.aliyuncs.com/open-digger/open-digger-js-notebook:1.0",
"notebook-pycjs": "npm run build && docker build --build-arg KER_REL_PATH=./pycjs --build-arg BASE_IMAGE=registry.cn-beijing.aliyuncs.com/open-digger/open-digger-js-notebook:1.0 -t opendigger-jupyter-python:1.0 . && docker run -i -t --name python_notebook_name --rm -p 8888:8888 -v .:/python_kernel/notebook opendigger-jupyter-python:1.0",
"pull-label-file-test": "tsc && node lib/ci/pull_label_file_test.js",
"cron": "npm run build && node --max-old-space-size=48000 lib/cron/index.js",
"test": "CLICKHOUSE_HOST=http://ci.open-digger.cn:8123 CLICKHOUSE_USERNAME=default CLICKHOUSE_PASSWORD= mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/X-lab2017/open-digger.git"
},
"keywords": [
"opensource"
],
"author": "FrankZhao",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/X-lab2017/open-digger/issues"
},
"homepage": "https://github.com/X-lab2017/open-digger#readme",
"dependencies": {
"@clickhouse/client": "0.0.16",
"@google/maps": "^1.1.3",
"@octokit/app": "^4.1.0",
"@octokit/auth-app": "^4.0.9",
"@octokit/core": "^3.6.0",
"ali-oss": "^6.17.1",
"async": "^3.2.5",
"csv-reader": "^1.0.12",
"dateformat": "^4.5.1",
"github-graphql-v4-client": "0.1.4",
"ijavascript-plotly": "0.0.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"neo4j-driver": "^4.4.11",
"node-cron": "^3.0.0",
"node-worker-threads-pool": "^1.5.1",
"openai": "^4.73.1",
"p-wait-for": "^3.1.0",
"parse-neo4j": "^0.6.11",
"pope": "^3.0.0",
"request": "^2.88.2",
"require-from-string": "^2.0.2",
"tslib": "^2.4.1"
},
"type": "commonjs",
"devDependencies": {
"@octokit/rest": "^19.0.5",
"@types/ali-oss": "^6.16.7",
"@types/async": "^3.2.24",
"@types/js-yaml": "^4.0.0",
"@types/lodash": "^4.14.178",
"@types/mocha": "^10.0.1",
"@types/node": "^14.14.37",
"@types/node-cron": "^3.0.1",
"@types/request": "^2.48.5",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}