-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.96 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ryuzu-bot",
"version": "2.3.0",
"description": "A module based discord bot",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"commands": "node app.js help | bunyan",
"deregister": "node app.js deregister | bunyan",
"sync": "node app.js syncDatabase | bunyan",
"start": "node app.js run | bunyan",
"dev": "nodemon -L -x \"yarn build && node app.js run || exit 1\" | bunyan",
"dev-start": "yarn build && node app.js run | bunyan",
"dev-dry": "node app.js run | bunyan",
"build": "concurrently 'eslint . --cache' 'tsc'",
"clean": "if [ -d \"node_modules\" ]; then yarn tsc --build --clean && rm -rf node_modules ; fi",
"docker": "docker build -t ryuzu-bot .",
"startprod": "node app.js run",
"migrate": "node app.js syncDatabase | bunyan"
},
"author": "Crazybmanp",
"license": "MIT",
"engines": {
"node": ">=16.6.0"
},
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"@google-cloud/logging-bunyan": "^3.3.0",
"bunyan": "^1.8.12",
"commander": "^9.2.0",
"discord-api-types": "^0.37.38",
"discord.js": "^13.6.0",
"pg": "^8.7.3",
"typeorm": "^0.3.3"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/node": "^17.0.23",
"@types/source-map-support": "^0.5.4",
"@types/convict": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"concurrently": "^7.0.0",
"eslint": "^8.11.0",
"eslint-plugin-jsdoc": "^38.0.6",
"nodemon": "^2.0.15",
"source-map-support": "^0.5.19",
"typescript": "^4.1.3"
},
"nodemonConfig": {
"ignore": [
"config/*",
"data/*",
"databases/*"
],
"ext": "ts json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crazybmanp/RyuZU-bot2.git"
},
"bugs": {
"url": "https://github.com/crazybmanp/RyuZU-bot2/issues"
},
"homepage": "https://github.com/crazybmanp/RyuZU-bot2#readme"
}