-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.72 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
60
61
62
63
64
65
{
"name": "pogify-twitch-bot",
"version": "0.0.1",
"description": "Pogify twitch bot",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"coverage": "jest --ci --collect-coverage",
"start": "node lib/index.js",
"build": "tsc",
"dev": "nodemon --exec ts-node index.ts -i channels.json",
"lint": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pogify/pogify-twitch-bot.git"
},
"keywords": [
"twitch",
"pogify",
"chatbot"
],
"author": "Pogify",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Pogify/pogify-twitch-bot/issues"
},
"homepage": "https://github.com/Pogify/pogify-twitch-bot#readme",
"dependencies": {
"axios": "^0.20.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"express": "^4.17.1",
"jose": "^2.0.2",
"nanoid": "^3.1.12",
"sqlite3": "^5.0.0",
"tmi.js": "^1.5.0",
"whiskers": "^0.4.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/node": "^14.11.2",
"@types/sqlite3": "^3.1.6",
"@types/supertest": "^2.0.10",
"@types/tmi.js": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"supertest": "^5.0.0",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}