-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
67 lines (67 loc) · 1.97 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
{
"name": "csc-discord-bot",
"version": "0.1.0",
"description": "",
"main": "dist/src/bot.js",
"scripts": {
"local:run": "mkdir -p tmp && NODE_ENV=dev tsc-watch --onSuccess \"node dist/index.js\"",
"ts:build": "tsc",
"image:build": "docker build . -t codey",
"clean": "docker-compose down",
"stop": "docker-compose stop",
"start": "docker-compose up -d",
"restart": "docker-compose restart",
"logs": "docker logs -f codey-bot",
"lint": "eslint . --fix --max-warnings 0",
"format": "prettier --write src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sapphire/decorators": "^4.3.8",
"@sapphire/framework": "4.2.2",
"@sapphire/pieces": "^3.6.1",
"@sapphire/plugin-logger": "^2.2.3",
"@sapphire/plugin-subcommands": "^4.0.0",
"@sapphire/utilities": "^3.11.0",
"@types/node-fetch": "^2.6.3",
"axios": "^0.27.2",
"concurrently": "^6.5.1",
"cron": "^1.8.2",
"discord.js": "14.9.0",
"dotenv": "^8.6.0",
"emoji-regex": "^10.2.1",
"engine-blackjack-ts": "^0.9.11",
"heic2jpg": "^1.0.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-fetch": "^2.6.9",
"pdf-lib": "^1.17.1",
"pdf2pic": "^2.1.4",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.6",
"stable-marriage": "^1.0.2",
"turndown": "^7.1.2",
"typescript": "^4.9.5",
"winston": "^3.8.2"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/cron": "^1.7.3",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.192",
"@types/node": "^15.14.9",
"@types/sqlite3": "^3.1.8",
"@types/turndown": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^3.4.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"tsc-watch": "^4.6.2"
}
}