-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
59 lines (59 loc) · 1.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "reactibot",
"version": "1.0.0",
"description": "Source code of Reactibot, utilized at Reactiflux server",
"private": true,
"scripts": {
"start": "node dist/index.js",
"dev": "npm-run-all --parallel 'dev:*'",
"dev:bot": "nodemon -r dotenv/config ./src/index.ts",
"dev:test": "vitest",
"build": "tsc",
"test": "npm-run-all -c --parallel 'test:*'",
"test:vitest": "vitest --run",
"test:lint": "eslint --ext js,ts . && prettier --check .",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/reactiflux/reactibot.git"
},
"license": "MIT",
"dependencies": {
"date-fns": "3.6.0",
"dedent": "1.5.3",
"discord.js": "14.15.3",
"dotenv": "16.4.5",
"gists": "2.0.0",
"lru-cache": "10.2.2",
"node-cron": "3.0.3",
"node-fetch": "2.6.12",
"open-graph-scraper": "6.5.2",
"openai": "4.55.5",
"pdf2pic": "3.1.1",
"query-string": "7.1.3",
"uuid": "9.0.1"
},
"devDependencies": {
"@types/node": "20.14.2",
"@types/node-cron": "3.0.11",
"@types/node-fetch": "2.6.11",
"@types/open-graph-scraper": "4.8.5",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"eslint": "8.57.0",
"eslint-config-prettier": "8.8.0",
"nodemon": "3.1.3",
"npm-run-all": "4.1.5",
"prettier": "3.3.1",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"vitest": "1.6.0"
},
"prettier": {
"trailingComma": "all"
},
"engines": {
"node": ">=20.0.0"
}
}