-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 834 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 834 Bytes
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
{
"name": "discus-bot",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"start:prod": "node out/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Squamanto/discus-bot.git"
},
"author": "Pascal Krieg",
"license": "ISC",
"bugs": {
"url": "https://github.com/Squamanto/discus-bot/issues"
},
"homepage": "https://github.com/Squamanto/discus-bot#readme",
"dependencies": {
"discord.js": "^12.3.1",
"express": "^4.17.1",
"inversify": "^5.0.1",
"mariadb": "^2.5.1",
"reflect-metadata": "^0.1.13",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/node": "^14.11.1",
"@types/express": "^4.17.9",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}