-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "catbot-js",
"version": "PRE-2.1.0",
"description": "Bot para discord multipropósito en Discord.js v14.3 y node.js",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "node build/src/index.js",
"dev": "nodemon src/index.ts | pino-pretty -i pid,hostname -t 'yyyy-mm-dd HH:MM:ss'",
"lint": "ts-standard",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carlosmoshudev/Discord-CatBotJS.git"
},
"author": "Carlos Moshu",
"license": "ISC",
"bugs": {
"url": "https://github.com/carlosmoshudev/Discord-CatBotJS/issues"
},
"homepage": "https://github.com/carlosmoshudev/Discord-CatBotJS#readme",
"dependencies": {
"discord.js": "14.3.0"
},
"devDependencies": {
"@types/express": "4.17.14",
"@types/express-handlebars": "6.0.0",
"@types/node": "18.7.18",
"dotenv": "16.0.2",
"eslint": "8.23.0",
"jest": "29.0.3",
"node-fetch": "2.6.7",
"nodemon": "2.0.19",
"pino": "7.0.0-rc.9",
"ts-node": "10.9.1",
"ts-standard": "11.0.0",
"typescript": "4.8.3",
"typescript-eslint": "^0.0.1-alpha.0"
},
"eslintConfig": {
"parserOptions": {
"project": "tsconfig.json"
},
"extends": [
"./node_modules/ts-standard/eslintrc.json"
]
}
}