forked from TheOdinProject/odin-bot-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.01 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
{
"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",
"eslint": "eslint '**/*.js'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^1.7.1",
"axios": "^1.4.0",
"discord-api-types": "^0.37.56",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"glob": "^10.3.3",
"ioredis": "^5.3.2",
"prettier": "^3.0.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.9",
"@babel/preset-env": "^7.22.5",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"nodemon": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.js": "npx eslint"
}
}