-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.4 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
{
"name": "@afilmory/monorepo",
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.19.0",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/vsxd/afilmory-vercel"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"audit:full": "pnpm audit --registry=https://registry.npmjs.org --audit-level=high",
"audit:prod": "pnpm audit --registry=https://registry.npmjs.org --prod --audit-level=high",
"build": "pnpm exec tsx apps/web/scripts/precheck.ts && pnpm build:web",
"build:manifest": "pnpm --filter @afilmory/builder cli",
"build:web": "pnpm --filter @afilmory/web build",
"check:fixtures": "pnpm fixture:e2e && git diff --exit-code -- apps/web/e2e/fixtures",
"contracts": "pnpm exec tsx scripts/check-workspace-contracts.ts",
"coverage:check:partitions": "pnpm exec tsx scripts/check-coverage-partitions.ts",
"deploy:smoke": "pnpm exec tsx scripts/deploy-smoke.ts",
"dev": "pnpm --filter @afilmory/web dev",
"dev:demo": "pnpm exec tsx scripts/demo-server.ts",
"fixture:e2e": "tsx scripts/create-synthetic-e2e-fixture.ts",
"format": "prettier . --write --ignore-unknown",
"format:check": "prettier . --check --ignore-unknown",
"generate:favicon": "tsx scripts/generate-favicon.ts",
"lint": "eslint . --cache --cache-location node_modules/.cache/eslint/root",
"lint:fix": "eslint . --fix",
"prepare": "simple-git-hooks",
"preview": "pnpm --filter @afilmory/web serve",
"sbom": "pnpm exec tsx scripts/generate-sbom.ts",
"security:secrets": "pnpm exec tsx scripts/scan-secrets.ts",
"test": "pnpm exec vitest run",
"test:coverage": "pnpm exec vitest run --coverage",
"test:e2e": "node scripts/run-playwright.mjs test",
"test:e2e:install": "node scripts/run-playwright.mjs install chromium",
"test:e2e:prod": "node scripts/run-playwright.mjs test --project=prod-smoke",
"test:e2e:webkit": "E2E_CROSS_BROWSER_SMOKE=true node scripts/run-playwright.mjs test --project=webkit-smoke --project=iphone-smoke",
"type-check": "tsc -p tsconfig.tools.json --noEmit && pnpm -r --if-present type-check"
},
"devDependencies": {
"@afilmory/build-assets": "workspace:*",
"@afilmory/builder": "workspace:*",
"@afilmory/schema": "workspace:*",
"@afilmory/ui": "workspace:*",
"@playwright/test": "1.62.1",
"@t3-oss/env-core": "catalog:",
"@testing-library/react": "^16.3.2",
"@types/node": "24.9.2",
"@vitest/coverage-v8": "3.2.7",
"consola": "3.4.2",
"dotenv": "catalog:",
"dotenv-expand": "catalog:",
"es-toolkit": "1.50.0",
"eslint": "9.39.4",
"eslint-config-hyoban": "4.0.10",
"fast-glob": "^3.3.2",
"jsdom": "^30.0.1",
"lint-staged": "17.2.0",
"opentype.js": "1.3.4",
"prettier": "3.9.6",
"sharp": "0.35.3",
"simple-git-hooks": "2.13.1",
"tailwindcss": "catalog:",
"tsx": "4.23.1",
"typescript": "catalog:",
"vite": "8.2.0",
"vite-bundle-analyzer": "1.3.9",
"vite-plugin-checker": "0.14.5",
"vitest": "3.2.7",
"zod": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,jsx,tsx,json}": [
"prettier --ignore-path ./.prettierignore --write",
"eslint --fix"
],
"*.{css,html,md,mdx,yaml,yml}": "prettier --ignore-path ./.prettierignore --write"
}
}