-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "basic-discord-app",
"version": "1.0.0",
"description": "Template for Discord Application in TypeScript",
"main": "build/scripts/main.js",
"scripts": {
"build": "tsc",
"prestart": "npm run clean && npm run build",
"predeploy": "npm run clean && npm run build",
"start": "node build/scripts/start.js",
"deploy": "node build/scripts/deploy.js",
"dev:start": "nodemon",
"clean": "rimraf build && rimraf app.log",
"clean:all": "npm run clean && rimraf node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ToPin060/BasicDiscordApp.git"
},
"bugs": {
"url": "https://github.com/ToPin060/BasicDiscordApp/issues"
},
"homepage": "https://github.com/ToPin060/BasicDiscordApp#readme",
"keywords": [
"basic-app",
"basic-application",
"discord",
"discordjs",
"typescript",
"template"
],
"directories": {
"lib": "src"
},
"type": "module",
"author": "ToPin060",
"license": "GNU GENERAL PUBLIC LICENSE V3",
"dependencies": {
"discord.js": "^14.15.3",
"dotenv": "^16.3.1",
"winston": "^3.11.0"
},
"devDependencies": {
"nodemon": "^3.0.2",
"rimraf": "^6.0.0",
"typescript": "^5.3.3"
}
}