This repository was archived by the owner on Jan 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.07 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.07 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "game-tracker",
"version": "0.0.0",
"description": "A Discord bot that helps you to track your stats in many games.",
"author": "Federico Grandi <fgrandi30@gmail.com>",
"license": "MIT",
"main": "src/core/start.ts",
"scripts": {
"start": "ts-node src/core/start.ts",
"beta": "cross-env NODE_ENV=beta && npm start",
"update": "git pull && npm ci",
"dev": "cross-env NODE_ENV=dev nodemon --watch src/**/*.* --ignore src/utils/reloadme.json --exec npm start",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"lint": "eslint \"./src/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"build": "tsc",
"test": "npm run build && npm run lint"
},
"eslintIgnore": [
"src/utils/reloadme.json"
],
"dependencies": {
"@discordjs/rest": "^2.2.0",
"@endbug/overwatch-stats-api": "^3.0.1",
"@supabase/supabase-js": "^2.39.1",
"blapi": "^3.1.2",
"cron": "^3.1.6",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.1.2",
"git-rev-sync": "^3.0.1",
"match-sorter": "^6.3.1",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"pretty-error": "^4.0.0",
"r6api.js": "^4.4.1",
"require-all": "^3.0.0",
"statcord.js": "^3.4.3",
"ts-node": "10.9.1",
"typescript-map": "0.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cron": "^2.4.0",
"@types/node": "^16.18.3",
"@types/nodemon": "^1.19.4",
"@types/require-all": "^3.0.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.17.0",
"all-contributors-cli": "^6.26.1",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EndBug/game-tracker.git"
},
"bugs": {
"url": "https://github.com/EndBug/game-tracker/issues"
},
"homepage": "https://github.com/EndBug/game-tracker#readme"
}