-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.01 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "discord-bot-starter",
"version": "1.1.0",
"description": "Discord bot starter project made with discord.js",
"private": true,
"keywords": [
"starter",
"typescript",
"discord",
"bot"
],
"homepage": "https://github.com/hoonsubin/discord-bot-starter",
"bugs": {
"url": "https://github.com/hoonsubin/discord-bot-starter/issues"
},
"author": {
"name": "Hoon Kim",
"url": "https://github.com/hoonsubin"
},
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/teamstep"
},
"repository": {
"type": "git",
"url": "https://github.com/hoonsubin/discord-bot-starter.git"
},
"main": "build/index.js",
"scripts": {
"start": "yarn run serve",
"serve": "node ./build/index.js",
"dev": "ts-node-dev -r dotenv/config src/index.ts",
"build": "tsc --project tsconfig.json",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"lint:check": "eslint '*/**/*.{js,ts}'",
"test": "NODE_ENV=test jest --verbose --coverage"
},
"engines": {
"node": ">=16.6.x"
},
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.3",
"@types/node-fetch": "2.5.10",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.0",
"jest-config": "^27.2.0",
"nock": "^13.1.3",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"dependencies": {
"@discordjs/rest": "^0.1.0-canary.0",
"discord-api-types": "^0.23.1",
"discord.js": "^13.1.0",
"express": "^4.17.1"
}
}