-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "reactibot",
"version": "1.0.0",
"description": "Source code of Reactibot, utilized at Reactiflux server",
"private": true,
"scripts": {
"start": "node -r dotenv/config dist/index.js",
"dev": "ts-node-dev -r dotenv/config src/index.ts",
"build": "tsc",
"test": "eslint --ext js,ts . && prettier --check .",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/reactiflux/reactibot.git"
},
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^0.11.0",
"@discordjs/rest": "^0.2.0-canary.0",
"date-fns": "^2.27.0",
"discord.js": "^13.5.0",
"dotenv": "^10.0.0",
"gists": "^2.0.0",
"node-fetch": "^2.2.0",
"query-string": "^6.2.0"
},
"devDependencies": {
"@types/node": "^17.0.5",
"@types/node-fetch": "^2.5.4",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"discord-api-types": "^0.26.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^4.5.4"
},
"prettier": {
"trailingComma": "all"
}
}