forked from zabartcc/bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 KB
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
{
"name": "bot",
"version": "0.1.0",
"description": "Discord Bot for automating menial tasks.",
"main": "app.js",
"scripts": {
"dev": "tsc -w & nodemon dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/albuquerque-web-stack/bot.git"
},
"author": "Albuquerque ARTCC Web Team",
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://gitlab.com/albuquerque-web-stack/bot/issues"
},
"homepage": "https://gitlab.com/albuquerque-web-stack/bot#readme",
"devDependencies": {
"@types/dotenv-flow": "^3.2.0",
"@types/ioredis": "^4.27.8",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"nodemon": "^2.0.14"
},
"dependencies": {
"axios": "^0.21.1",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"dotenv-flow": "^3.2.0",
"ioredis": "^4.19.4",
"metar-parser": "^1.0.0",
"mongoose-lean-virtuals": "^0.7.6",
"typescript": "^4.4.4"
}
}