-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
{
"name": "kappashiro-bot",
"version": "2.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch & node dist",
"start": "node dist/index.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"author": "github.com/71Kevin",
"license": "MIT",
"dependencies": {
"axios": "^0.26.1",
"canvas": "^2.11.2",
"discord.js": "^12.3.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"gifencoder": "^2.0.1",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.34",
"uuid": "^8.3.2",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/dateformat": "^5.0.0",
"@types/express": "^4.17.13",
"@types/gifencoder": "^2.0.1",
"@types/lodash": "^4.14.195",
"@types/node": "^17.0.45",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"@typescript-eslint/typescript-estree": "^5.17.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.0.0",
"prettier": "^2.6.1",
"typescript": "^4.6.3"
}
}