-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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-and-fix": "eslint . --ext .ts --fix",
"prestart:dev": "npm run build",
"start:dev": "nodemon build/index.js",
"prebuild": "rimraf ./build",
"build": "tsc",
"prestart": "npm run build",
"start": "node build/index.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": {
"@azure/arm-compute": "^17.0.0",
"@azure/arm-network": "^26.0.0",
"@azure/arm-subscriptions": "^3.1.2",
"@azure/identity": "^2.0.1",
"@azure/ms-rest-js": "^2.6.0",
"@types/express": "^4.17.7",
"@types/node": "^14.0.20",
"discord.js": "^12.2.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"rimraf": "^3.0.2",
"typescript": "^3.9.6"
}
}