-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.38 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
{
"name": "ascalongw-discord-bot",
"version": "1.0.0",
"description": "AscalonGW Discord Bot",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/allegrocy/ascalongw-discord-bot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/allegrocy/ascalongw-discord-bot/issues"
},
"homepage": "https://github.com/allegrocy/ascalongw-discord-bot#readme",
"scripts": {
"lint": " eslint . --ext .js,.ts",
"build": "tsc -p tsconfig.json && cp -ura assets/* dist/assets",
"dev": "nodemon src/index.ts",
"dev:debug": "nodemon --inspect src/index.ts"
},
"dependencies": {
"@types/atob": "^2.1.2",
"@types/node": "^14.11.8",
"@types/opentype.js": "^1.3.4",
"@types/ws": "^7.2.7",
"axios": "^0.21.0",
"date-fns": "^2.16.1",
"discord.js": "^12.3.1",
"discord.js-commando": "github:discordjs/Commando",
"express": "^4.18.2",
"memory-streams": "^0.1.3",
"pureimage": "*",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.11.0",
"nodemon": "^2.0.4",
"typescript-eslint": "0.0.1-alpha.0"
}
}