-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.39 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
50
51
{
"name": "mcbe-playtime-bot",
"version": "1.0.0",
"description": "A discord bot for displaying user playtime for mcbe bds servers.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" ",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint --fix --ext .js *.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jared-hess/mcbe-playtime-bot.git"
},
"author": "Jared Hess",
"license": "ISC",
"bugs": {
"url": "https://github.com/jared-hess/mcbe-playtime-bot/issues"
},
"homepage": "https://github.com/jared-hess/mcbe-playtime-bot#readme",
"dependencies": {
"bull": "^3.22.0",
"csv": "^5.4.0",
"discord-fetch-all": "^3.0.2",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"husky": "^5.2.0",
"moment": "^2.29.1",
"moment-range": "^4.0.2",
"mongodb": "^3.6.5",
"mrm": "^2.6.1",
"nedb": "^1.8.0",
"quickchart-js": "^1.0.7",
"splitargs": "0.0.7"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "echo 'Husky pre-commit' && lint-staged"
}
}
}