forked from flybywiresim/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 950 Bytes
/
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
{
"name": "bot",
"version": "1.0.0",
"scripts": {
"build:typescript": "tsc",
"run:node": "node build/index.js",
"dev": "nodemon --watch src/ -e ts --exec ts-node src/index.ts",
"run": "npm run build:typescript && npm run run:node",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix"
},
"keywords": [],
"author": "FlyByWire Simulations",
"license": "GPLv3",
"dependencies": {
"@elastic/ecs-winston-format": "^1.1.0",
"discord.js": "^12.5.3",
"elastic-apm-node": "^3.17.0",
"express": "^4.17.1",
"moment": "^2.29.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@flybywiresim/eslint-config": "^0.1.0",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"dotenv": "^10.0.0",
"eslint": "^7.29.0",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}