-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "dice-dyb-discord-bot",
"version": "1.0.0",
"description": "DayBar's discord dice bot.",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"tsc": "tsc",
"build": "npm run tsc",
"dev": "ts-node-dev --respawn --pretty --transpile-only src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BernardJeremy/dice-dyb-discord-bot.git"
},
"author": "BernardJeremy <jeremy@bernard.sh>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BernardJeremy/dice-dyb-discord-bot/issues"
},
"dependencies": {
"discord.js": "^14.0.3",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@types/node": "^18.7.2",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}