-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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
{
"name": "magda-minion-knowledge-graph",
"version": "1.0.0",
"description": "A Magda minion constructs knowledge graph based on datasets metadata.",
"main": "index.js",
"repository": "git@github.com:magda-io/magda-minion-knowledge-graph.git",
"author": "Jacky Jiang <t83714@gmail.com>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"prebuild": "rimraf dist tsconfig.tsbuildinfo",
"build": "yarn run compile",
"compile": "tsc -b",
"watch": "tsc -b --watch",
"start": "node dist/index.js",
"dev": "run-typescript-in-nodemon src/index.ts",
"docker-build-local": "create-docker-context-for-node-component --build --push --tag auto --local",
"docker-build-prod": "create-docker-context-for-node-component --build --push --tag auto",
"test": "mocha --require ts-node/register --require tsconfig-paths/register \"src/test/**/*.spec.ts\"",
"helm-lint": "helm lint deploy/magda-minion-knowledge-graph -f deploy/test-deploy.yaml",
"retag-and-push": "retag-and-push"
},
"devDependencies": {
"@magda/ci-utils": "^1.0.2",
"@magda/docker-utils": "^1.2.0",
"@types/cache-manager": "^3.4.0",
"@types/chai": "^4.2.15",
"@types/lodash": "^4.14.168",
"@types/md5": "^2.3.0",
"@types/mocha": "^8.2.0",
"@types/natural": "^2.1.1",
"@types/node": "^12.19.15",
"@types/node-fetch": "^2.5.8",
"@types/stopword": "^1.0.0",
"@types/tar": "^4.0.4",
"chai": "^4.3.0",
"husky": "^3.1.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"typescript": "^3.9.5",
"wikibase-types": "^0.2.1"
},
"dependencies": {
"@magda/minion-sdk": "^0.0.59",
"@magda/registry-aspects": "^0.0.59",
"@magda/utils": "^0.0.59",
"@types/urijs": "^1.19.14",
"cache-manager": "^3.4.0",
"cache-manager-fs-hash": "^0.0.9",
"lodash": "^4.17.20",
"md5": "^2.3.0",
"natural": "^2.4.5",
"neo4j-driver": "^4.2.2",
"node-fetch": "^2.6.1",
"stopword": "^1.0.6",
"tar": "^6.1.0",
"urijs": "^1.19.5",
"wikidata-sdk": "^7.9.0"
},
"config": {
"registryUrl": "http://localhost:6101/v0",
"docker": {
"name": "data61/magda-minion-knowledge-graph",
"include": "node_modules dist psrc Dockerfile package.json"
},
"jwtSecret": "squirrel",
"userId": "00000000-0000-4000-8000-000000000000"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}