-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.37 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.37 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
{
"name": "loltimeflash-monorepo",
"version": "2.3.3",
"private": true,
"description": "LolTimeFlash - Real-time Flash timer tracking for League of Legends",
"author": "LolTimeFlash Team",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"predev": "pnpm --filter @loltimeflash/shared run build",
"dev": "turbo run dev",
"dev:web": "turbo run dev --filter=web",
"dev:api": "turbo run dev --filter=api",
"dev:shared": "pnpm --filter @loltimeflash/shared run dev",
"build": "turbo run build",
"build:web": "turbo run build --filter=web",
"build:api": "turbo run build --filter=api",
"start": "turbo run start",
"start:web": "turbo run start --filter=web",
"start:api": "turbo run start --filter=api",
"lint": "turbo run eslint",
"lint:fix": "turbo run eslint:fix",
"format": "turbo run format",
"format:check": "turbo run format:check",
"type-check": "turbo run type-check",
"test": "turbo run test",
"clean": "bash scripts/clean.sh",
"kill-ports": "bash scripts/kill-ports.sh",
"get_started": "bash scripts/get_started.sh",
"docker": "bash scripts/docker.sh",
"docker:build": "bash scripts/docker.sh build",
"docker:up": "bash scripts/docker.sh up",
"docker:down": "bash scripts/docker.sh down",
"docker:restart": "bash scripts/docker.sh restart",
"docker:logs": "bash scripts/docker.sh logs",
"docker:clean": "bash scripts/docker.sh clean",
"docker:test": "bash scripts/docker.sh test",
"sync:champions": "tsx scripts/sync-champions.ts",
"sync:champions:fresh": "tsx scripts/sync-champions.ts --fresh",
"load-test:http": "artillery run load-tests/http-api.yml",
"load-test:socket": "artillery run load-tests/socket-io.yml",
"load-test:all": "artillery run load-tests/http-api.yml && artillery run load-tests/socket-io.yml",
"load-test:report": "artillery run --output load-tests/reports/$(date +%Y%m%d-%H%M%S).json load-tests/http-api.yml"
},
"devDependencies": {
"@types/node": "^20.11.5",
"artillery": "^2.0.26",
"artillery-plugin-metrics-by-endpoint": "^1.20.0",
"concurrently": "^9.1.2",
"prettier": "^3.4.2",
"sharp": "^0.33.5",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.10.0"
}