-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.62 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
65
66
67
{
"name": "releaseflight",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-or-later",
"description": "Release Flight (Community Edition) — open-source control surface for App Store Connect + Google Play. Multi-tenant metadata, screenshots, app previews and ASO intelligence for games and apps. Self-host with one command.",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.12.0",
"scripts": {
"dev": "turbo run dev --parallel",
"dev:webpack": "pnpm --filter @marquee/web dev:webpack",
"warmup": "pnpm --filter @marquee/web warmup",
"fast": "scripts/fast-dev.sh",
"build": "turbo run build",
"start": "pnpm --filter @marquee/web start",
"lint": "eslint .",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:security": "turbo run test --filter=@marquee/core --filter=@marquee/web --filter=@marquee/storage --filter=@marquee/secrets --filter=@marquee/api-contracts --filter=@marquee/runner",
"test:e2e": "playwright test --config=e2e/playwright.config.ts",
"test:load:baseline": "k6 run tests/load/baseline.js",
"test:load:probes": "k6 run tests/load/public-probes.js",
"test:load:auth": "k6 run tests/load/auth-burst.js",
"test:chaos": "tests/chaos/run-all.sh",
"prepare": "husky || true",
"format": "prettier --write \"**/*.{ts,tsx,md,json,yml,yaml}\" --ignore-path .gitignore",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json,yml,yaml}\" --ignore-path .gitignore",
"db:generate": "pnpm --filter @marquee/db prisma:generate",
"db:push": "pnpm --filter @marquee/db prisma:push",
"db:rls": "pnpm --filter @marquee/db db:rls",
"db:setup": "pnpm --filter @marquee/db db:setup",
"db:reset": "pnpm --filter @marquee/db prisma:reset",
"db:seed": "pnpm --filter @marquee/db seed",
"db:studio": "pnpm --filter @marquee/db prisma:studio",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@next/eslint-plugin-next": "^16.2.9",
"@playwright/test": "^1.48.0",
"@types/node": "^22.7.5",
"eslint": "^10.5.0",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"turbo": "^2.1.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.61.1"
},
"pnpm": {
"overrides": {
"ioredis": "5.10.1"
},
"peerDependencyRules": {
"ignoreMissing": [
"@types/react"
]
}
}
}