-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "aviationx",
"version": "3.0.0",
"private": true,
"license": "Apache-2.0",
"type": "module",
"main": "build/main.js",
"scripts": {
"build": "tsc",
"dev": "node --loader ts-node/esm src/main.ts",
"fix:prettier": "prettier --write .",
"lint": "eslint src",
"prettier": "prettier --check .",
"start": "node build/main.js",
"watch": "nodemon --exec npm run dev"
},
"dependencies": {
"@discordx/importer": "^1.3.0",
"@discordx/pagination": "^3.5.3",
"aviationweather": "^3.0.4",
"axios": "^1.7.2",
"dayjs": "^1.11.11",
"discord.js": "^14.15.3",
"discordx": "^11.9.4",
"fuse.js": "^7.0.0"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"nodemon": "^3.1.3",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}