-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
60 lines (60 loc) · 1.96 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
58
59
60
{
"name": "discord-free-games-notifier",
"version": "3.0.1",
"description": "A Discord bot that will notify you when games on various storefronts become free.",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/entrypoint/startSingle.ts",
"dev:sharded": "cross-env NODE_ENV=development npm run build && cross-env NODE_ENV=development DISCORD_SHARDING_ENABLED=true DISCORD_SHARDING_COUNT=2 node build/entrypoint/start.js",
"build": "tsc -p ./tsconfig.build.json",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .tsx,.ts,.js",
"lint:fix": "eslint . --ext .tsx,.ts,.js --fix",
"test": "jest",
"test:watch": "jest --watch",
"deploy:dev": "ts-node src/entrypoint/deploy.ts",
"deploy:prod": "node build/entrypoint/deploy.js",
"start": "node build/entrypoint/start.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moonstar-x/discord-free-games-notifier.git"
},
"homepage": "https://docs.moonstar-x.dev/discord-free-games-notifier",
"bugs": {
"url": "https://github.com/moonstar-x/discord-free-games-notifier/issues"
},
"author": "moonstar-x",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@moonstar-x/logger": "^1.0.1",
"dayjs": "^1.11.12",
"discord-api-types": "^0.37.93",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"flat": "^5.0.2",
"humanize-duration": "^3.32.1",
"intl-messageformat": "^10.5.14",
"pg-promise": "^11.9.1",
"redis": "^4.7.0",
"require-all": "^3.0.0"
},
"devDependencies": {
"@moonstar-x/eslint-config": "^1.0.0",
"@types/flat": "^5.0.5",
"@types/humanize-duration": "^3.27.4",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@types/require-all": "^3.0.6",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}