-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "tk",
"version": "1.0.0",
"description": "The official Knight Hacks Discord Bot",
"repository": {
"type": "git",
"url": "git+https://github.com/KnightHacks/tk.git"
},
"author": "Knight Hacks Dev Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/KnightHacks/tk/issues"
},
"homepage": "https://github.com/KnightHacks/tk#readme",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node .",
"build": "tsup src/index.ts --minify",
"format": "prettier --write \"**/*.{json,ts}\"",
"lint": "eslint . --ext ts --fix",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@googleapis/calendar": "^9.7.6",
"@libsql/client": "^0.7.0",
"@napi-rs/canvas": "^0.1.53",
"@rschedule/core": "^1.5.0",
"@rschedule/standard-date-adapter": "^1.5.0",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"drizzle-orm": "^0.32.0",
"googleapis": "^140.0.1",
"he": "^1.2.0",
"jimp": "^0.22.12",
"libsql": "*",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"perf_hooks": "^0.0.1",
"rrule": "^2.8.1"
},
"devDependencies": {
"@types/he": "^1.2.3",
"@types/jimp": "^0.2.1",
"@types/node": "^18.13.0",
"@types/node-cron": "^3.0.11",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"drizzle-kit": "^0.23.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"gapi-client": "^0.0.3",
"prettier": "^2.8.4",
"tsup": "^6.6.0",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
}
}