forked from scorixear/kellerus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
47
{
"name": "kellerus",
"version": "1.0.1",
"description": "General Discord-Bot",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"build": "babel src --out-dir dist",
"serve": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/scorixear/kellerus.git"
},
"keywords": [
"discord",
"bot"
],
"author": "Paul Keller",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/scorixear/kellerus/issues"
},
"homepage": "https://github.com/scorixear/kellerus#readme",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.12.5",
"@discordjs/opus": "^0.1.0",
"discord.js": "^12.4.1",
"mariadb": "^2.5.1",
"puppeteer": "^2.1.1",
"superagent": "^5.3.1",
"ytdl-core": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.6"
}
}