-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.33 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.33 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
84
85
86
87
88
89
90
91
92
93
{
"scripts": {
"dev": "vite",
"build": "vite build",
"build:watch": "vite build --watch",
"preview": "vite preview",
"clean": "if exist dist rmdir /s /q dist && if exist node_modules\\.vite rmdir /s /q node_modules\\.vite",
"clean:all": "if exist dist rmdir /s /q dist && if exist node_modules rmdir /s /q node_modules",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest",
"enhance": "node scripts/auto-enhance.js",
"deploy": "pnpm build && firebase deploy --only hosting",
"deploy:firebase": "pnpm build && firebase deploy --only hosting",
"deploy:worker": "npx wrangler deploy src/youtube-worker.ts --name ytstudio",
"deploy:all": "pnpm run deploy:firebase && pnpm run deploy:worker",
"worker:dev": "npx wrangler dev src/youtube-worker.ts",
"worker:tail": "npx wrangler tail",
"worker:types": "npx wrangler types",
"pages:dev": "npx wrangler pages dev dist --project-name=yt-studio",
"pages:deploy": "npx wrangler pages deploy dist --project-name=yt-studio",
"varlock": "varlock",
"varlock:load": "varlock load",
"env:validate": "npx varlock load",
"env:list": "npx varlock list",
"env:show": "npx varlock show",
"start": "node server.js",
"dev:css": "sass --watch src/styles:dist/css",
"dev:js": "esbuild src/index.js --bundle --outfile=dist/bundle.js --watch",
"dev:server": "nodemon server.js",
"build:css": "sass src/styles:dist/css --style=compressed",
"build:js": "esbuild src/index.js --bundle --outfile=dist/bundle.js --minify"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260508.1",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.5.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"esbuild": "^0.28.0",
"jsdom": "^29.1.1",
"nodemon": "^3.1.14",
"npm-run-all": "^4.1.5",
"playwright": "^1.59.1",
"postcss": "^8.5.14",
"rimraf": "^6.1.3",
"tailwindcss": "^4.2.4",
"trigger-circleci-pipeline": "^1.12.1",
"tsup": "^8.5.1",
"typescript": "^5.1.6",
"varlock": "^1.1.0",
"vite": "^8.0.11",
"vitest": "^4.1.5"
},
"dependencies": {
"@circleci/circleci-config-sdk": "^0.8.0",
"@cloudflare/vite-plugin": "^1.36.3",
"@firebase/functions": "^0.13.4",
"@octokit/rest": "^22.0.1",
"@textlint/source-code-fixer": "^15.6.0",
"@varlock/cloudflare-integration": "^1.1.1",
"@vercel/functions": "^3.5.0",
"chunk": "^0.0.3",
"circletui": "^1.0.3",
"express": "^5.2.1",
"express-session": "^1.19.0",
"ghas-fixer": "^1.3.0",
"node-cloudflared-tunnel": "^1.0.10",
"trigger-circleci-pipeline": "^1.12.1",
"circletui": "^1.0.3"
},
"name": "yt-studio",
"version": "1.0.0",
"description": "<img width=\"1200\" height=\"675\" alt=\"gitcity-ruhdevops-landscape\" src=\"https://github.com/user-attachments/assets/78f27b70-ffce-47ca-8c56-22ce98cfc38e\" />",
"main": "github-build.js",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruhdevops/YT-Studio.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/ruhdevops/YT-Studio/issues"
},
"homepage": "https://github.com/ruhdevops/YT-Studio#readme"
}