-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 973 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
{
"name": "datathon-discord-bot",
"version": "1.0.0",
"private": true,
"main": "lib/main.js",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
"format": "prettier --write src/**/*.ts",
"lint": "eslint --fix src/**/*.ts",
"start": "node lib/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acmuta/datathon-discord-bot.git"
},
"author": "acmuta",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/acmuta/datathon-discord-bot/issues"
},
"homepage": "https://github.com/acmuta/datathon-discord-bot#readme",
"dependencies": {
"discord.js": "^14.9.0"
},
"devDependencies": {
"@tsconfig/node-lts": "^18.12.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"typescript": "^5.0.4"
}
}