-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.69 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "fly-dbh-discord-bot",
"version": "0.0.1",
"description": "Discord bot for fly-dbh.com",
"main": "./dist/main.cjs",
"type": "module",
"scripts": {
"start": "npm run build && node ./dist/main.cjs",
"build": "webpack",
"pb": "node publish.js",
"dev": "cross-env WEBPACK_BUILD_ENV=dev webpack",
"test": "jest __tests__/",
"up": "npx npm-check-updates -i"
},
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/Diablohu/fly-dbh-discord-bot.git"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"discord"
],
"author": {
"name": "Diablohu",
"email": "[email protected]",
"url": "http://diablohu.com"
},
"bugs": {
"url": "https://github.com/Diablohu/fly-dbh-discord-bot/issues"
},
"homepage": "https://github.com/Diablohu/fly-dbh-discord-bot#readme",
"dependencies": {
"axios": "^1.3.5",
"debug": "^4.3.4",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"form-data": "^4.0.0",
"fs-extra": "^11.1.1",
"koa": "^2.14.2",
"listr": "^0.14.3",
"md5": "^2.3.0",
"winston": "^3.8.2",
"zen-observable": "^0.10.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@types/fs-extra": "^11.0.1",
"@types/koa": "^2.13.6",
"@types/listr": "^0.14.4",
"@types/zen-observable": "^0.8.3",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-koot": "^4.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"koot-cli-kit": "^0.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"prettier-eslint": "^15.0.1",
"react": "^18.2.0",
"thread-loader": "^3.0.4",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1"
},
"overrides": {},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,cjs,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{xxxxxx}": [
"tsc --noEmit"
],
"*.{json,md,css,less,sass,scss}": [
"prettier --write"
]
}
}