-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.96 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.96 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
{
"name": "cms",
"private": true,
"version": "0.0.0",
"packageManager": "pnpm@10.30.3",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"test": "vitest",
"test:run": "vitest run",
"lint": "tsc -b",
"push-secrets": "bash scripts/push-secrets.sh",
"push-secrets:fly": "bash scripts/push-secrets.sh fly",
"push-secrets:docker": "bash scripts/push-secrets.sh docker",
"push-secrets:github": "bash scripts/push-secrets.sh github",
"screenshots": "pnpm dlx tsx scripts/screenshots.ts",
"ship": "bash scripts/ship.sh",
"ship:skip": "bash scripts/ship.sh --skip-local",
"ship:status": "gh run list --workflow=deploy.yml --repo webhousecode/cms --limit=5",
"ship:watch": "gh run watch --repo webhousecode/cms",
"webhouse.app:ios": "pnpm --filter @webhouse/cms-mobile ios",
"webhouse.app:android": "pnpm --filter @webhouse/cms-mobile android",
"wha:ios": "pnpm --filter @webhouse/cms-mobile ios",
"wha:android": "pnpm --filter @webhouse/cms-mobile android",
"wha:login": "pnpm --filter @webhouse/cms-mobile sim:login",
"test:e2e": "cd packages/cms-admin && pnpm test:e2e",
"test:all": "pnpm -r run test && cd packages/cms-admin && pnpm test:e2e",
"clean": "pnpm --filter @webhouse/cms-admin clean",
"weekly": "bash scripts/weekly-local.sh",
"weekly:trigger": "gh workflow run \"Release (weekly)\" --repo webhousecode/cms --ref main -f force=true && gh run watch --repo webhousecode/cms"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.2",
"jose": "^6.2.1",
"knip": "^5.87.0",
"playwright": "^1.58.2",
"tsup": "^8.3.5",
"turbo": "^2.8.18",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"@supabase/supabase-js": "^2.99.1",
"exif-reader": "^2.0.3",
"mammoth": "^1.12.0",
"marked": "^15.0.12",
"pdf-parse": "1.1.1",
"sharp": "^0.34.5",
"sirv": "^3.0.2"
}
}