This repository was archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "soncoord-bot",
"version": "0.0.1",
"description": "Soncoord Twitch Chatbot",
"main": "src/index.ts",
"scripts": {
"watch": "node_modules\\.bin\\tsc -w",
"build": "node_modules\\.bin\\tsc",
"start": "node ./dist/index.js",
"lint": "node_modules\\.bin\\eslint .\\src --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wampe/soncoord-bot.git"
},
"author": "Wampe",
"license": "The Unlicense",
"bugs": {
"url": "https://github.com/Wampe/soncoord-bot/issues"
},
"homepage": "https://github.com/Wampe/soncoord-bot#readme",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^17.0.15",
"@types/passport": "^1.0.7",
"@types/passport-oauth2": "^1.4.11",
"@types/tmi.js": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"axios": "^0.26.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"firebase": "^9.6.6",
"passport": "^0.5.2",
"passport-oauth2": "^1.6.1",
"tmi.js": "^1.8.5",
"tslib": "^2.3.1"
}
}