-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.02 KB
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
{
"name": "knowledge-base-neo4j",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"start-js": "node dist/index.js",
"debug-js": "node dist/index.js -d",
"start": "ts-node src/index.ts",
"debug": "ts-node src/index.ts -d",
"test-neo4j": "ts-node ./tools/test-neo4j.ts",
"test-node-nlp": "ts-node ./tools/test-node-nlp.ts",
"test-luis-controller": "ts-node ./tools/test-luis-controller.ts",
"test-dialog-manager": "ts-node ./tools/test-dialog-manager.ts"
},
"author": "Andrew Rapo <andrew@wwlib.org>",
"license": "MIT",
"dependencies": {
"commander": "^6.2.0",
"inquirer": "^7.3.3",
"jest": "^26.6.3",
"jsonfile": "^6.1.0",
"neo4j-driver": "^4.2.1",
"node-nlp": "^4.16.0",
"prettyjson": "^1.2.1",
"request": "^2.88.2"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}