forked from moka-labs/moji-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 864 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
{
"name": "discord-emoji-bot",
"version": "1.0.0",
"description": "Resend the emoji as a larger image!",
"main": "index.js",
"keywords": [
"discord",
"bot",
"emoji"
],
"author": "Byeon Seongun <[email protected]>",
"license": "ISC",
"scripts": {
"build": "tsc",
"serve": "node dist/index.js",
"start": "npm run serve",
"dev": "nodemon src/index.ts",
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"dotenv": "^16.0.0",
"emojis-list": "^3.0.0",
"eris": "^0.16.1",
"twemoji-parser": "^14.0.0"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/twemoji-parser": "^13.1.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}