-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1008 Bytes
/
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
{
"name": "discordjs-template-ts",
"version": "1.0.0",
"description": "DiscordJs Template with new module system",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node -r dotenv/config ./build/index.js",
"dev": "tsc && node -r dotenv/config ./build/index.js"
},
"repository": {
"type": "git",
"url": "https://github/muraterzioglu/discordjs-template-ts"
},
"keywords": [
"discordjs",
"typescript"
],
"author": "Murat Terzioglu",
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^1.6.3",
"@discordjs/collection": "^1.5.1",
"@discordjs/core": "^0.6.0",
"@discordjs/rest": "^1.7.1",
"@discordjs/ws": "^0.8.3",
"discord-api-types": "^0.37.42",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/node": "^20.1.3",
"@typescript-eslint/parser": "^5.59.11",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"typescript": "^5.0.4"
}
}