-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 4 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "replay-master",
"version": "1.0.0",
"description": "My Moleculer-based microservices project",
"main": "services/discord/discord-bot.service.ts",
"type": "module",
"scripts": {
"clean": "rimraf dist/",
"build": "npm run clean && tsc --project tsconfig.build.json",
"dev": "tsx ./node_modules/moleculer/bin/moleculer-runner.js -e --config moleculer.config.ts --hot --repl services/**/*.service.ts !./**/file.service.ts",
"dev:recorder": "tsx ./node_modules/moleculer/bin/moleculer-runner.js -e --config moleculer.config.ts --hot --repl services/replay-recorder/*.service.ts",
"start": "moleculer-runner --config dist/moleculer.config.js -e dist/services/**/*.service.js !dist/services/**/file.service.js",
"start:recorder": "moleculer-runner --config dist/moleculer.config.js -e dist/services/replay-recorder/*.service.js",
"test:types": "concurrently npm:prettier npm:lint npm:typecheck",
"typecheck": "tsc --noEmit && echo \"tsc: no typecheck errors\"",
"ci": "vitest --watch",
"test": "vitest run unit",
"test:watch": "vitest unit",
"test:coverage": "vitest run unit --coverage.enabled --coverage.all",
"lint": "cross-env TIMING=1 eslint . --ext cjs,mjs,js,jsx,ts,tsx",
"lint:fix": "cross-env TIMING=1 eslint . --ext cjs,mjs,js,jsx,ts,tsx --fix",
"prettier": "prettier . --ignore-unknown --check",
"prettier:fix": "prettier . --ignore-unknown --write",
"dc:up": "docker-compose up --build -d",
"dc:logs": "docker-compose logs -f",
"dc:down": "docker-compose down",
"sapphire": "sapphire",
"generate": "sapphire generate",
"download-hlae": "node scripts/download-hlae.js",
"steam-login": "node scripts/steam-login.js"
},
"keywords": [
"microservices",
"moleculer"
],
"author": "",
"devDependencies": {
"@sapphire/cli": "^1.9.3",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/fs-extra": "^11.0.4",
"@types/get-pixels": "^3.3.4",
"@types/gl": "^6.0.5",
"@types/gl-texture2d": "^2.1.6",
"@types/globaloffensive": "^2.3.4",
"@types/node": "^18.11.9",
"@types/steam-user": "^4.26.8",
"@types/unbzip2-stream": "^1.4.3",
"@types/url-parse": "^1.4.11",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitest/coverage-v8": "^1.5.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vitest": "^0.5.2",
"moleculer-repl": "^0.7.4",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsx": "^4.7.2",
"typescript": "^5.4.3",
"vitest": "^1.5.0"
},
"dependencies": {
"@discordjs/builders": "^1.7.0",
"@discordjs/rest": "^2.2.0",
"@laihoe/demoparser2": "^0.22.5",
"@sapphire/decorators": "^6.1.0",
"@sapphire/framework": "^5.0.10",
"async-ffmpeg": "^2024.1.15",
"csgo-sharecode": "^3.1.2",
"decompress": "^4.2.1",
"discord": "^0.8.2",
"discord-api-types": "^0.37.78",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"execa": "^8.0.1",
"ffmpeg-on-progress": "^1.0.0",
"fluent-ffmpeg": "^2.1.2",
"get-pixels": "^3.3.3",
"gl": "^8.0.2",
"gl-buffer": "^2.1.2",
"gl-texture2d": "^2.1.0",
"gl-transition": "^1.13.0",
"gl-transitions": "^1.43.0",
"globaloffensive": "^3.1.0",
"minio": "^7.1.3",
"moleculer": "^0.14.27",
"moleculer-db": "^0.8.21",
"moleculer-db-adapter-mongo": "^0.4.16",
"moleculer-web": "^0.10.5",
"nats": "^2.7.1",
"p-map": "^7.0.2",
"ramda-adjunct": "^4.1.1",
"sandboxie-js": "^1.0.2",
"sharp": "^0.33.3",
"steam-user": "^5.0.8",
"superjson": "^1.13.3",
"unbzip2-stream": "^1.4.3",
"undici": "^6.11.1",
"xmlbuilder2": "^3.1.1"
},
"engines": {
"node": ">= 16.x.x"
}
}