-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "typescript-discord-bot-template",
"version": "1.0.0",
"description": "The un-offical Discord Bot for TheLab.ms",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"lint": "eslint . --ext .ts --config .eslintrc",
"config": "tsx ./src/scripts/config.ts",
"dev": "npm run config && tsx src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ATechAdventurer/Typescript-Discord-Bot-Template.git"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ATechAdventurer/Typescript-Discord-Bot-Template/issues"
},
"homepage": "https://github.com/ATechAdventurer/Typescript-Discord-Bot-Template#readme",
"dependencies": {
"@discordjs/builders": "^1.6.3",
"@discordjs/rest": "^1.7.1",
"cron": "^2.2.0",
"discord-api-types": "^0.37.46",
"discord.js": "14.11.0",
"dotenv": "^16.0.3",
"fastify": "^4.17.0",
"qs": "^6.11.2",
"zod": "^3.20.6",
"zod-to-json-schema": "^3.21.2"
},
"devDependencies": {
"@types/cron": "^2.0.0",
"@types/node": "^18.16.16",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"prisma": "^4.14.1",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.0",
"tsx": "^3.14.0",
"typescript": "^4.9.5"
}
}