-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "slack-archivist",
"version": "1.0.0",
"description": "A Slackbot that archives threads to Discourse and suggests previous threads that may answer a user question",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"test": "jest",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/jwulf/slack-archivist.git"
},
"keywords": [
"slackbot"
],
"author": "Josh Wulf <josh@magikcraft.io>",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/jwulf/slack-archivist/issues"
},
"homepage": "/~https://github.com/jwulf/slack-archivist#readme",
"dependencies": {
"@slack/events-api": "^2.3.1",
"@slack/interactive-messages": "^1.7.0",
"@slack/web-api": "^5.7.0",
"@types/pouchdb-upsert": "^2.2.6",
"axios": "^0.21.1",
"chalk": "^3.0.0",
"debug": "^3.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"form-data": "^2.5.1",
"fp-ts": "^2.8.5",
"io-ts": "^2.2.12",
"io-ts-promise": "^2.0.2",
"json-colorizer": "^2.2.2",
"logform": "^2.2.0",
"pouchdb-collate": "^7.2.2",
"pouchdb-find": "^7.2.2",
"pouchdb-node": "^7.2.2",
"pouchdb-upsert": "^2.2.0",
"seratch-slack-types": "^0.6.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "20.10.0",
"@types/pouchdb-node": "^6.1.3",
"husky": "^4.3.0",
"jest": "^25.1.0",
"prettier": "^2.1.2",
"ts-jest": "^25.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.6.3"
}
}