forked from TheOdinProject/odin-bot-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "bot-v2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"format": "prettier --cache --write",
"eslint": "eslint '**/*.js'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^2.3.0",
"axios": "^1.7.7",
"discord-api-types": "^0.37.101",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"glob": "^11.0.0",
"ioredis": "^5.4.1",
"prettier": "^3.3.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.js": "npx eslint"
}
}