-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.67 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
{
"name": "vmp",
"version": "1.0.0",
"private": true,
"description": "Video Monetization Platform - HLS video streaming with subscription-based access control",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspaces --if-present",
"media-pipeline": "npm run start --workspace=@vmp/media-pipeline",
"podcast-host": "npm run start --workspace=@vmp/media-pipeline",
"media-host": "npm run start --workspace=@vmp/media-pipeline",
"build": "npm run build --workspaces --if-present",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format:check": "biome format .",
"format": "biome format --write .",
"knip": "knip",
"typecheck": "npm run typecheck --workspace=@vmp/shared && npm run typecheck --workspace=@vmp/storage && npm run typecheck --workspace=@vmp/api && npm run typecheck --workspace=@vmp/api-node && npm run typecheck --workspace=@vmp/web",
"typecheck:deploy": "npm run typecheck --workspace=@vmp/shared && npm run typecheck --workspace=@vmp/storage && npm run typecheck --workspace=@vmp/api && npm run typecheck --workspace=@vmp/web && npm run typecheck:scripts --workspace=@vmp/web && npm run build:sw-push --workspace=@vmp/web && npm run verify:deploy --workspace=@vmp/api-node",
"verify:api-node": "npm run verify:deploy --workspace=@vmp/api-node",
"deploy:api": "npm run deploy --workspace=@vmp/api",
"deploy:web": "npm run deploy --workspace=@vmp/web",
"install:api-node": "npm ci --include-workspace-root --workspace=@vmp/shared --workspace=@vmp/storage --workspace=@vmp/api --workspace=@vmp/api-node",
"build:api-node": "npm run build --workspace=@vmp/api-node",
"db:create": "cd packages/api && wrangler d1 execute video-subscription-db --file=./migrations/0001_canonical_schema.sql",
"db:seed": "cd packages/api && wrangler d1 execute video-subscription-db --file=./migrations/0002_canonical_seed.sql"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@nx/nuxt": "23.1.1",
"@nx/vite": "23.1.1",
"@vue/language-core": "^3.3.8",
"knip": "^6.29.0",
"nuxt": "^4.5.1",
"nx": "23.1.1",
"ws": "8.21.1",
"@typescript/native": "npm:typescript@^7.0.2",
"typescript": "npm:@typescript/typescript6@^6.0.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"overrides": {
"esbuild": "0.28.1",
"serialize-javascript": ">=7.0.3",
"brace-expansion": ">=5.0.9",
"better-sqlite3": "^12.10.0",
"tmp": ">=0.2.6",
"form-data": "4.0.6",
"ws": "8.21.1",
"tar": "^7.5.22",
"axios": "^1.19.0",
"undici": "7.29.0",
"nuxt": {
"undici": "8.10.0"
}
}
}