-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.74 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "main-code",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"eslint:format": "eslint --ext .js,.ts,.vue,.jsx,.tsx --ignore-path .gitignore .",
"prettier:format": "prettier '**/*.{js,jsx,ts,tsx,vue}' --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tinypudding/discord-slash-commands": "^1.0.1",
"canvas": "^2.6.1",
"chalk": "^4.1.0",
"common-tags": "^1.8.0",
"discord-bot-dashboard": "^0.2.0",
"discord-fetch-all": "^3.0.2",
"discord-player": "^3.4.0",
"discord-reply": "0.0.9-a",
"discord.js": "^12.5.1",
"discord.js-reaction-controller": "^2.0.0",
"dotenv": "^8.2.0",
"eslint": "^7.18.0",
"express": "^4.17.1",
"express-react-views": "^0.11.0",
"firebase": "^8.2.7",
"firebase-admin": "^9.5.0",
"genshin": "^1.2.4",
"genshin-db": "^2.0.0",
"html-entities": "^2.0.6",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"mongoose": "^5.11.16",
"node-fetch": "^2.6.1",
"node-superfetch": "^0.1.11",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"slash-commands": "^1.3.1",
"slash-commands-discord": "^1.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.jsx": [
"prettier --write",
"eslint --fix"
],
"*.tsx": [
"prettier --write",
"eslint --fix"
],
"*.vue": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
]
}
}