-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
51
52
53
{
"name": "hive-greeter",
"version": "1.0.0",
"description": "Discord bot written in Typescript and discord.js hosted on Heroku",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prestart:dev": "npm run build",
"dev": "nodemon build/index.js",
"prebuild": "rimraf ./build",
"build": "tsc",
"prestart": "npm run build",
"start": "node build/index.js",
"register-commands": "node build/scripts/register-slash-commands.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MidasXIV/hive-greeter.git"
},
"keywords": [
"discord",
"typescript",
"bot",
"heroku"
],
"author": "Aman Shaikh (mxiv)",
"license": "ISC",
"bugs": {
"url": "https://github.com/MidasXIV/hive-greeter/issues"
},
"homepage": "https://github.com/MidasXIV/hive-greeter#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2"
},
"dependencies": {
"@types/express": "^4.17.17",
"@types/lokijs": "^1.5.7",
"@types/node": "^18.15.5",
"binance-api-node": "^0.11.12",
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"lokijs": "^1.5.12",
"rimraf": "^4.4.1",
"typescript": "^5.0.2",
"undici": "^5.21.0"
}
}