forked from reactiflux/reactibot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 KB
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
{
"name": "reactibot",
"version": "1.0.0",
"description": "Source code of Reactibot, utilized at Reactiflux server",
"private": true,
"scripts": {
"start": "node dist/src/index.js",
"start:commands": "node dist/scripts/deploy-commands.js",
"dev": "npm-run-all --parallel 'dev:*'",
"dev:bot": "nodemon -r dotenv/config ./src/index.ts",
"dev:commands": "nodemon -r dotenv/config ./scripts/deploy-commands.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.15.0",
"@discordjs/rest": "^0.5.0",
"@types/node-cron": "^3.0.1",
"date-fns": "^2.27.0",
"discord-api-types": "^0.33.4",
"discord.js": "^13.8.0",
"dotenv": "^10.0.0",
"gists": "^2.0.0",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.7",
"open-graph-scraper": "^4.11.0",
"query-string": "^6.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^17.0.5",
"@types/node-fetch": "^2.5.4",
"@types/open-graph-scraper": "^4.8.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"ts-node": "^10.8.1",
"typescript": "^4.5.4"
},
"prettier": {
"trailingComma": "all"
}
}