-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
35 lines (35 loc) · 1006 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
{
"name": "statsbot",
"version": "1.0.0",
"description": "> **Note** <br>\r > This project does participate in the **Hacktoberfest** event!",
"main": "index.js",
"scripts": {
"test": "echo 'Error: No test specified'",
"format": "echo 'Formatting js files ...' && prettier --log-level silent --write *.js commands/*.js",
"dev": "npm run format && nodemon index.js -e js,json",
"production": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thieleju/statsbot.git"
},
"author": "Julian Thiele",
"license": "MIT",
"bugs": {
"url": "https://github.com/thieleju/statsbot/issues"
},
"homepage": "https://github.com/thieleju/statsbot#readme",
"dependencies": {
"axios": "^1.7.3",
"countdown": "^2.6.0",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"html-to-text": "^9.0.5",
"luxon": "^3.5.0"
},
"devDependencies": {
"eslint": "^9.8.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3"
}
}