-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.33 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
{
"name": "isthereanydeal-lookup",
"version": "3.0.0",
"description": "Discord bot for getting game discount info from IsThereAnyDeal",
"author": "Adam Davies <[email protected]> (https://adam-davies.me)",
"main": "lib/index.ts",
"license": "MIT",
"scripts": {
"db:init": "prisma migrate dev",
"build": "tsc && tsc-alias",
"build:types": "npx openapi-typescript https://raw.githubusercontent.com/IsThereAnyDeal/API/master/dist/openapi.json -o ./lib/util/itad.d.ts",
"start": "node dist/index.js",
"lint": "eslint lib/**.ts"
},
"engines": {
"node": ">=16.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/acdvs/dealbot.git"
},
"homepage": "https://dealbot.gg",
"dependencies": {
"@discordjs/builders": "^1.7.0",
"@discordjs/rest": "^0.4.1",
"@prisma/client": "^3.14.0",
"axios": "^0.27.2",
"discord.js": "^14.3.0",
"prisma": "^3.14.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"colors": "^1.4.0",
"discord-api-types": "^0.37.4",
"dotenv": "^16.0.1",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.4.2"
}
}