forked from ScorpionConMate/matebotJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
{
"name": "matebot_js",
"version": "1.0.0",
"description": "- Bienvenida a los usuarios (newMembers.py) - Reminder(scheduler) - FAQ's (faq.py)",
"main": "dist/index.js",
"scripts": {
"build": "etsc",
"start": "node .",
"dev": "nodemon",
"clearDistDirectory": "rimraf dist",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"cmd:generate": "node ./src/lib/command/generate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hifrontendcafe/matebotJS.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hifrontendcafe/matebotJS/issues"
},
"homepage": "https://github.com/hifrontendcafe/matebotJS#readme",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.11.44",
"@types/reflect-metadata": "^0.1.0",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"esbuild": "^0.14.49",
"esbuild-node-tsc": "^1.8.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=16.x"
},
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"axios": "^0.27.2",
"chrono-node": "^2.3.1",
"cors": "^2.8.5",
"discord-api-types": "^0.22.0",
"discord.js": "13.13.1",
"dotenv": "^10.0.0",
"express": "^4.18.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.12",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.2.1",
"typedi": "^0.10.0",
"winston": "^3.3.3",
"yargs": "^17.1.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
}
}