-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"name": "discord-bot",
"version": "1.0.1",
"type": "commonjs",
"engines": {
"node": "23.6.0"
},
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,json,md}\"",
"format:check": "prettier --check \"**/*.{js,json,md}\"",
"prepare": "husky",
"ci": "yarn install --frozen-lockfile"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"cron": "^3.2.1",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"eslint-plugin-import": "^2.31.0",
"googleapis": "^144.0.0",
"moment-timezone": "^0.5.46"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.14.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"eslint": "^9.20.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"bugs": {
"url": "https://github.com/TeamNovaSoft/novabot/issues/new/choose"
}
}