forked from mangosango/clive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 973 Bytes
/
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
{
"name": "clappybot",
"version": "1.0.0",
"description": "bot that posts clips posted to twitch chat to discord",
"license": "ISC",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.js",
"dev": "nodemon --inspect src/index.js",
"precommit": "lint-staged"
},
"dependencies": {
"dotenv": "^8.2.0",
"lodash": "^4.17.19",
"lowdb": "^1.0.0",
"nodemon": "^2.0.4",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"twitch-js": "^2.0.0-beta.33",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0"
},
"lint-staged": {
"**/*.js": [
"prettier --write --single-quote --trailing-comma all"
],
"**/*.json": [
"prettier --write --parser json"
],
"**/*.md": [
"prettier --write --parser --prose-wrap never markdown"
]
}
}