This repository was archived by the owner on Feb 25, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.13 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
{
"name": "relic-tracker",
"version": "1.0.0",
"description": "A Discord bot build for the official Phantom Abyss server that tracks missing relics per member and notifies them if one of their missing relics is found.",
"author": "Adam Davies <adam@adam-davies.me> (https://adam-davies.me)",
"homepage": "https://github.com/acdvs/relic-tracker#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/acdvs/relic-tracker.git"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@types/node": "^16.4.8",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"discord.js": "^13.0.1",
"dotenv": "^10.0.0",
"mongodb": "^4.0.1"
}
}