-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.36 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
{
"name": "timecounterdiscordbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "npm run lint --fix"
}
},
"lint-staged": {
"*.{js}": [
"cross-env eslint --cache --format=pretty",
"prettier --ignore-path .eslintignore --single-quote --write",
"git add"
],
"{*.json}": [
"prettier --ignore-path .eslintignore --parser json --write",
"git add"
],
"*.{yml,md}": [
"prettier --ignore-path .eslintignore --single-quote --write",
"git add"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon ./index.js",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/opus": "^0.3.3",
"axios": "^0.21.1",
"canvas": "^2.6.1",
"discord-player": "^3.2.0",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"enmap": "^5.8.2",
"ffmpeg-static": "^4.2.7",
"firebase": "^8.2.5",
"firebase-admin": "^9.4.2",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"nodemon": "^2.0.6"
},
"devDependencies": {
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"npm-check-updates": "^10.2.5",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"prettier": "2.2.1"
}
}