-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "qtweet",
"version": "1.0.0",
"type": "module",
"description": "A cute bot who cross-posts twitter posts to Discord",
"main": "src/index.js",
"scripts": {
"build": "babel src --out-dir dist --extensions '.ts,.js'",
"start": "node --es-module-specifier-resolution=node dist/index.js",
"lint": "yarn eslint src/* --fix"
},
"author": "Elise Navennec",
"license": "AGPL-3.0",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@types/fluent": "^0.11.3",
"@types/node": "^17.0.21",
"@types/pg": "^7.14.5",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"typescript": "^4.7.0-dev.20220227"
},
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"dblapi.js": "^2.3.0",
"discord.js": "^13.6.0",
"fluent": "^0.12.0",
"fortune-teller": "^0.1.2",
"pg": "^8.2.1",
"twitter-lite": "^0.14.0",
"unfurl.js": "^3.0.1"
}
}