-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "bot-v2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky",
"start": "node index.js",
"dev": "nodemon --watch . --watch .env index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"format": "prettier --cache --write",
"eslint": "eslint"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^2.6.1",
"axios": "^1.13.5",
"discord-api-types": "^0.38.43",
"discord.js": "^14.25.1",
"dotenv": "^17.3.1",
"glob": "^13.0.6",
"ioredis": "^5.10.1",
"prettier": "^3.8.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.6",
"@babel/preset-env": "^7.29.2",
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-plugin-check-file": "^3.3.1",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.3.2",
"nodemon": "^3.1.14"
},
"lint-staged": {
"!(*.js)": "prettier --check --ignore-unknown",
"*.js": [
"prettier --check",
"eslint"
]
}
}