forked from antoniojps/discord-bot-pubg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
52
53
54
55
56
57
{
"name": "bot",
"version": "1.0.0",
"description": "pubg-pt discord bot for lfs and stats roles",
"main": "dist/bot.js",
"author": "antoniojps,karolisp",
"license": "MIT",
"scripts": {
"commit": "git-cz",
"start:dev": "nodemon dist/bot.js",
"start": "node dist/bot.js",
"build": "tsc",
"postintall": "npm run build",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.165",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"lodash": "^4.17.20",
"mongoose": "^5.11.7",
"query-string": "^6.13.7",
"tsc": "^2.0.3",
"yargs-parser": "^20.2.4",
"yarn": "^1.22.11",
"@brokerloop/ttlcache": "^3.2.3"
},
"devDependencies": {
"@types/mongoose": "^5.10.3",
"@types/node": "^14.14.12",
"@types/yargs-parser": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"git-cz": "^4.7.6",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"typescript": "^4.4.2"
}
}