-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "punibot",
"version": "1.0.0",
"description": "A Simple Discord bot made with Discord.js and Node.js",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"scripts": {
"start": "node index",
"dev": "nodemon --delay 8 index",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Gabriel Santana Silva",
"license": "MIT",
"dependencies": {
"ansi-colors": "^4.1.3",
"axios": "^1.6.2",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"moment": "^2.29.4",
"mongoose": "^8.0.1"
},
"devDependencies": {
"eslint": "^8.54.0",
"husky": "^8.0.3",
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PuniGC/PuniBot.git"
},
"bugs": {
"url": "https://github.com/PuniGC/PuniBot/issues",
"email": "gabriel04.ok@gmail.com"
},
"homepage": "https://github.com/PuniGC/PuniBot#readme"
}