-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
53 lines (53 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
{
"name": "destinygg-chat-bot",
"version": "0.6.1",
"description": "Chat bot for destiny.gg chat",
"main": "index.js",
"scripts": {
"test": "mocha tests/**/*.test.js --exit --reporter spec",
"lint": "eslint index.js \"./lib/**/*.js\"",
"start": "node index.js | bunyan",
"start:mock-chat": "node tools/mock-chat-server.js",
"start:dev": "concurrently --names \"mock-chat,chat-bot,mock-chat\" npm:start:mock-chat \"node --watch index.js | bunyan\" \"open-cli tools/mock-chat.html\""
},
"author": "linusred",
"license": "MIT",
"engines": {
"node": "^18.0.0"
},
"dependencies": {
"axios": "^1.4.0",
"bunyan": "^1.8.14",
"fast-levenshtein": "^3.0.0",
"google-auth-library": "^6.1.1",
"googleapis": "^61.0.0",
"inspector-influx": "^2.7.0",
"inspector-metrics": "^1.21.0",
"lodash": "^4.17.20",
"metascraper": "^5.14.20",
"metascraper-date": "^5.14.20",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31",
"protobufjs": "^6.10.1",
"sqlite3": "^5.0.0",
"twitch-js": "^2.0.0-beta.45",
"twitter": "^1.1.0",
"ws": "^7.3.1",
"yargs": "^16.0.3"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"concurrently": "^8.2.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^10.2.0",
"open-cli": "^7.2.0",
"prettier": "^2.1.2",
"proxyquire": "^2.1.3",
"sinon": "^9.2.0"
}
}