-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "elsa-mina-discord-bot",
"version": "0.0.1",
"description": "Yet another Discord bot",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && tsc",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist"
},
"keywords": [
"discord",
"bot"
],
"engines": {
"node": ">=16.0.0 <18.0.0"
},
"author": "",
"license": "ISC",
"dependencies": {
"@pkmn/dex": "^0.7.28",
"axios": "^1.3.4",
"decache": "^4.6.1",
"discord.js": "^13.13.1",
"dotenv": "^16.0.3",
"jsep": "^1.3.8",
"luxon": "^3.3.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.4",
"typeorm": "0.3.12"
},
"devDependencies": {
"@types/luxon": "^3.2.0",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"concurrently": "^7.6.0",
"eslint": "^8.36.0",
"nodemon": "^2.0.21",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}