-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "remote-sentiment",
"version": "1.0.0",
"description": "Calculate sentiment from slack conversations",
"main": "src/index.js",
"scripts": {
"start": "ts-node .",
"start:watch": "ts-node-dev ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remotehack/remote-sentiment.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/remotehack/remote-sentiment/issues"
},
"homepage": "https://github.com/remotehack/remote-sentiment#readme",
"dependencies": {
"@elastic/elasticsearch": "^7.6.1",
"@slack/events-api": "^2.3.2",
"@slack/web-api": "^5.8.0",
"@tensorflow-models/toxicity": "^1.2.2",
"@tensorflow/tfjs": "^1.7.1",
"apos-to-lex-form": "^1.0.5",
"body-parser": "^1.19.0",
"date-fns": "^2.11.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"natural": "^0.6.3",
"stopword": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/node": "^13.9.5",
"ts-node": "^8.8.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
}
}