-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
53 lines (53 loc) · 1.22 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": "clappybot",
"version": "1.1.0",
"description": "bot that posts clips posted to twitch chat to discord",
"license": "ISC",
"exports": "./build/index.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node build/index.js",
"dev:build": "tsc -w",
"dev:run": "nodemon --inspect build/index.js",
"dev": "concurrently npm:dev:*",
"precommit": "lint-staged"
},
"dependencies": {
"axios": "^1.6.8",
"dotenv": "^16.4.5",
"lowdb": "^7.0.1",
"request": "^2.88.2",
"twitch-js": "^2.0.0-beta.45",
"winston": "^3.13.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@types/node": "^20.12.4",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"typescript": "^5.4.3"
},
"lint-staged": {
"**/*.js": [
"prettier --write --single-quote --trailing-comma all"
],
"**/*.json": [
"prettier --write --parser json"
],
"**/*.md": [
"prettier --write --parser --prose-wrap never markdown"
]
},
"type": "module",
"engines": {
"node": ">=20"
}
}