-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "upland-travel-bot",
"version": "0.0.5",
"description": "Discord Bot for travel routes in Upland.",
"author": "VIKTORVAV99",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"scripts": {
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:check": "eslint . --cache --cache-location .cache/.eslintcache",
"lint:fix": "eslint . --fix --cache --cache-location .cache/.eslintcache",
"check": "npm run format:check && npm run lint:check",
"fix": "npm run format:fix && npm run lint:fix",
"setup": "git pull && npm install",
"setupandstart": "npm run setup && npm start",
"build": "tsc",
"prestart": "npm run build",
"start": "node --experimental-json-modules .",
"run": "node --experimental-json-modules .",
"prepare": "husky install"
},
"dependencies": {
"@discordjs/builders": "^1.3.0",
"@discordjs/rest": "^1.3.0",
"discord-api-types": "^0.37.2",
"discord.js": "^13.10.1",
"dotenv": "^16.0.2",
"ngraph.graph": "^20.0.1",
"ngraph.path": "^1.4.0",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}