-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "iserv-discord-bot",
"version": "1.0.0",
"description": "A Discord Bot which shows usefull Data from Iserv",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node ./dist/index.js",
"build": "tsc",
"dev": "ts-node-dev src/index.ts --transpile-only",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"prettify": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run format && npm run prettify && npm run build"
},
"keywords": [
"discord",
"iserv",
"typescript"
],
"author": "JonatanMGit",
"license": "MIT",
"devDependencies": {
"@types/needle": "^2.5.2",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"discord.js": "^13.3.1",
"eslint": "^8.3.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
},
"dependencies": {
"@discordjs/builders": "^0.8.2",
"@discordjs/rest": "^0.1.0-canary.0",
"discord-api-types": "^0.20.2",
"dotenv": "^10.0.0",
"needle": "^3.0.0",
"query-string": "^7.0.1"
}
}