-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.76 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
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
{
"name": "clarityhub-summarize-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint src tests",
"test": "jest tests/unit/**",
"test:integration": "jest tests/integration/**",
"docs:build": "node ./docs/compile.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run docs:build",
"pre-push": "npm run lint && npm run docs:build"
}
},
"author": "Clarity Hub <support@clarityhub.io>",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://gitlab.com/clarityhub/clarityhub-api-nlp.git"
},
"dependencies": {
"@bugsnag/js": "^6.4.0",
"@clarityhub/harmony-server": "0.0.16",
"@tensorflow-models/universal-sentence-encoder": "^1.1.0",
"@tensorflow/tfjs": "^1.2.1",
"@tensorflow/tfjs-converter": "^1.2.1",
"@tensorflow/tfjs-node": "^1.2.1",
"ajv": "^6.10.0",
"ajv-i18n": "^3.4.0",
"ajv-keywords": "^3.4.0",
"bottlejs": "^1.7.2",
"compromise": "^11.13.2",
"density-clustering": "^1.3.0",
"http-errors": "^1.7.2",
"middy": "^0.27.0",
"node-fetch": "^2.6.0",
"node-sentiment": "0.0.7",
"openapi-schema-validator": "^3.0.3",
"request": "^2.88.0"
},
"devDependencies": {
"aws-sdk": "^2.478.0",
"babel-eslint": "^10.0.2",
"bcrypt": "^3.0.6",
"bindings": "^1.5.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-clarity-hub": "^2.0.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-security": "^1.4.0",
"husky": "^2.4.1",
"jest": "^24.8.0",
"js-yaml": "^3.13.1",
"serverless": "^1.45.1",
"serverless-domain-manager": "^3.2.2",
"serverless-dynamodb-local": "^0.2.38",
"serverless-offline": "^4.10.5"
}
}