forked from connorgallopo/Tracearr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.1 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.1 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "tracearr",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Streaming access manager for Plex and Jellyfin",
"license": "AGPL-3.0",
"author": "Connor Gallopo",
"scripts": {
"dev": "turbo dev --filter=!@tracearr/mobile",
"docker:up": "docker compose -f docker/docker-compose.dev.yml up -d --build",
"docker:down": "docker compose -f docker/docker-compose.dev.yml down",
"dev:all": "turbo dev",
"dev:mobile": "turbo dev --filter=@tracearr/mobile",
"build": "turbo build",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md}\"",
"typecheck": "turbo typecheck",
"test": "turbo test",
"test:all": "turbo test:all",
"test:unit": "turbo test:unit",
"test:services": "turbo test:services",
"test:routes": "turbo test:routes",
"test:security": "turbo test:security",
"test:integration": "turbo test:integration",
"test:e2e": "turbo test:e2e",
"test:watch": "turbo test:watch",
"test:coverage": "turbo test:coverage",
"local-ci": "docker compose -f docker/docker-compose.test.yml up -d --wait && pnpm lint && pnpm typecheck && pnpm test:unit && pnpm test:services && pnpm test:routes && pnpm test:security && pnpm test:integration && CI=true pnpm test:e2e && pnpm test:coverage && pnpm translations:check; docker compose -f docker/docker-compose.test.yml down --volumes",
"test:unit:coverage": "turbo test:unit:coverage",
"test:services:coverage": "turbo test:services:coverage",
"test:routes:coverage": "turbo test:routes:coverage",
"translations:check": "pnpm --filter @tracearr/translations check",
"translations:fix": "pnpm --filter @tracearr/translations check -- --fix",
"clean": "turbo clean && rm -rf node_modules",
"prepare": "husky",
"reset-password": "pnpm --filter @tracearr/server reset-password"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@types/node": "^24.10.15",
"@types/react": "19.2.13",
"@vitest/coverage-v8": "4.0.18",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"shadcn": "^3.8.5",
"turbo": "^2.8.12",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "4.0.18"
},
"pnpm": {
"overrides": {
"lightningcss": "1.30.1",
"hono": ">=4.11.10"
},
"onlyBuiltDependencies": [
"@shopify/react-native-skia",
"esbuild",
"react-native-nitro-modules"
],
"ignoredBuiltDependencies": [
"core-js-pure",
"msw",
"tree-sitter",
"tree-sitter-json"
]
},
"packageManager": "pnpm@10.28.1+sha512.7d7dbbca9e99447b7c3bf7a73286afaaf6be99251eb9498baefa7d406892f67b879adb3a1d7e687fc4ccc1a388c7175fbaae567a26ab44d1067b54fcb0d6a316",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}