-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "fbw-discord-bot",
"version": "1.0.0",
"description": "Moderation, utility and support bot for the FlyByWire Simulations Discord server",
"main": "./build/index.js",
"exports": "./build/index.js",
"scripts": {
"start": "node .",
"dev": "nodemon --config nodemon.json src/index.ts",
"build": "tsc",
"build:digitalocean": "npm ci --include=dev && npm run build",
"lint": "eslint \"src/**/**/*.ts\"",
"lint-fix": "eslint \"src/**/**/*.ts\" --fix"
},
"author": "FlyByWire Simulations",
"license": "AGPL-3.0",
"dependencies": {
"@aws-sdk/client-s3": "^3.499.0",
"@aws-sdk/lib-storage": "^3.499.0",
"@hokify/agenda": "^6.0.0",
"@octokit/request": "^8.1.1",
"bad-words": "^3.0.4",
"cache-manager": "^5.7.6",
"config": "^3.3.9",
"discord.js": "^14.16.1",
"jsdom": "^23.2.0",
"moment": "^2.29.4",
"mongoose": "^8.0.3",
"node-fetch": "^2.6.10",
"winston": "^3.3.4"
},
"devDependencies": {
"@flybywiresim/eslint-config": "^0.1.0",
"@types/bad-words": "^3.0.3",
"@types/config": "^3.3.1",
"@types/jsdom": "^21.1.6",
"@types/node": "^18.0.0",
"@types/node-fetch": "^2.6.10",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"dotenv": "^16.0.0",
"eslint": "^7.29.0",
"nodemon": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^5.5.4"
},
"engines": {
"node": "18.x"
}
}