-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.89 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.89 KB
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
{
"name": "csc-codey-bootcamp",
"version": "1.0.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-bootcamp",
"clean": "docker-compose down",
"stop": "docker-compose stop",
"start": "docker-compose up -d",
"restart": "docker-compose restart",
"logs": "docker logs -f codey-bootcamp",
"lint": "eslint . --fix",
"format": "prettier --write src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sapphire/decorators": "^4.2.3",
"@sapphire/framework": "3.0.0-next.8198e94.0",
"@sapphire/plugin-logger": "^2.1.3",
"@sapphire/plugin-subcommands": "^2.1.3",
"@sapphire/utilities": "^3.3.0",
"@types/node-fetch": "^2.6.2",
"axios": "^0.27.2",
"concurrently": "^6.1.0",
"cron": "^1.8.2",
"discord.js": "^13.6.0",
"dotenv": "^8.2.0",
"emoji-regex": "^10.2.1",
"engine-blackjack-ts": "^0.9.11",
"js-yaml": "^4.1.0",
"keyv": "^4.5.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"node-fetch": "^2.6.2",
"pdf-lib": "^1.17.1",
"pdf2pic": "^2.1.4",
"sqlite": "^4.0.22",
"sqlite3": "^5.0.2",
"stable-marriage": "^1.0.2",
"typescript": "^4.6.3",
"winston": "^3.8.1"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/cron": "^1.7.2",
"@types/js-yaml": "^4.0.1",
"@types/lodash": "^4.14.168",
"@types/node": "^15.0.1",
"@types/sqlite3": "^3.1.7",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.7",
"prettier": "^2.7.1",
"tsc-watch": "^4.4.0"
}
}