forked from Akiko643/discord-contest-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
49
50
51
{
"name": "discord-contest-bot",
"version": "1.0.0",
"description": "Discord contest notifier bot",
"main": "dist/cli.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/cli.js",
"test": "npx jest",
"dev": "npx tsc-watch --onSuccess 'npm start'"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akiko643/discord-contest-bot.git"
},
"keywords": [
"programming",
"contest",
"bot",
"discord"
],
"author": "G.Zolboobayar <[email protected]>, A. Amarjargal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Akiko643/discord-contest-bot/issues"
},
"homepage": "https://github.com/Akiko643/discord-contest-bot#readme",
"devDependencies": {
"@nicepack/eslint-ts": "^1.0.1",
"@types/node": "^13.9.2",
"@types/node-fetch": "^2.5.5",
"eslint": "^6.8.0",
"prettier": "^1.19.1",
"tsc-watch": "^4.2.3",
"typescript": "^3.8.3"
},
"dependencies": {
"discord.js": "^12.0.2",
"dotenv": "^8.2.0",
"module-alias": "^2.2.2",
"node-fetch": "^2.6.0"
},
"_moduleAliases": {
"@": "dist"
}
}