-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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": "bgsbot-next",
"version": "4.0.0",
"description": "A Discord bot for Elite Dangerous player groups",
"author": {
"name": "Sayak Mukhopadhyay",
"email": "[email protected]"
},
"contributors": [
{
"name": "Sayak Mukhopadhyay",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"build:dev": "tsc -w",
"start": "node dist/index.js",
"start:dev": "nodemon dist/index.js",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"axios": "^1.6.2",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"luxon": "^3.4.4",
"mongoose": "^8.0.2",
"socket.io-client": "^2.5.0"
},
"devDependencies": {
"@types/node": "^20.3.1",
"@types/socket.io": "^2.1.13",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"typescript": "^5.1.3"
}
}