-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.72 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.72 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
{
"name": "matchday-monorepo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm --parallel --filter \"@matchday/player\" --filter \"@matchday/admin\" dev",
"dev:player": "pnpm --filter \"@matchday/player\" dev",
"dev:admin": "pnpm --filter \"@matchday/admin\" dev",
"build": "pnpm --filter \"@matchday/*\" build",
"build:packages": "pnpm --filter \"@matchday/database\" --filter \"@matchday/services\" --filter \"@matchday/auth\" --filter \"@matchday/shared\" build",
"build:player": "pnpm --filter \"@matchday/player\" build",
"build:admin": "pnpm --filter \"@matchday/admin\" build",
"lint": "pnpm --filter \"@matchday/player\" --filter \"@matchday/admin\" lint",
"type-check": "pnpm --filter \"@matchday/player\" --filter \"@matchday/admin\" type-check",
"test": "jest",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:coverage": "jest --coverage",
"test:coverage:view": "jest --coverage && open coverage/lcov-report/index.html",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"clean": "pnpm --recursive exec rm -rf node_modules .next dist build coverage",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css}\""
},
"devDependencies": {
"prettier": "^3.4.2",
"typescript": "^5"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748",
"dependencies": {
"@supabase/supabase-js": "^2.81.1",
"metro-minify-terser": "^0.83.3",
"metro-runtime": "0.80.12",
"zod": "^4.1.12"
}
}