-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 7.75 KB
/
Copy pathpackage.json
File metadata and controls
137 lines (137 loc) · 7.75 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "jobsentinel",
"version": "2.9.5",
"description": "Privacy-preserving local-first job-search assistant for desktop",
"type": "module",
"packageManager": "npm@12.0.1",
"scripts": {
"dev": "vite",
"dev:mock": "VITE_MOCK_API=true vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext .ts,.tsx",
"lint:scripts": "eslint scripts --ext .js,.mjs",
"typecheck": "tsc --build --pretty false",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"lint:md": "markdownlint --config .markdownlint.json --ignore node_modules --ignore dist --ignore target --ignore src-tauri/gen --ignore .vale/styles --ignore CHANGELOG.md --ignore docs/CLAUDE.md --ignore .claude --ignore docs/archive --ignore browser-extension --ignore playwright-report --ignore test-results \"**/*.md\"",
"lint:md:fix": "markdownlint --fix --config .markdownlint.json --ignore node_modules --ignore dist --ignore target --ignore src-tauri/gen --ignore .vale/styles --ignore CHANGELOG.md --ignore docs/CLAUDE.md --ignore .claude --ignore docs/archive --ignore browser-extension --ignore playwright-report --ignore test-results \"**/*.md\"",
"lint:prose": "node scripts/checks/docs-prose.mjs",
"lint:links": "node scripts/checks/markdown-links.mjs",
"lint:prose:all": "vale .",
"lint:language": "node -e 'import(\"./scripts/harness/checks/language-style.mjs\").then(({ collectLanguageStyleViolations }) => { const violations = collectLanguageStyleViolations(process.cwd()); if (violations.length) { console.error(violations.join(\"\\n\")); process.exit(1); } console.log(\"Language style check passed.\"); })'",
"lint:sqlx": "node scripts/checks/sqlx-metadata.mjs",
"lint:architecture": "node scripts/checks/frontend-boundaries.mjs && node scripts/checks/repository-architecture.mjs",
"lint:security": "node scripts/checks/security-sensors.mjs && npm run lint:secrets",
"lint:secrets": "node scripts/checks/secrets.mjs",
"lint:bloat": "node scripts/checks/repo-bloat.mjs",
"lint:file-size": "node scripts/checks/file-sizes.mjs",
"lint:dup": "node scripts/checks/duplication.mjs",
"lint:external-ai": "node scripts/checks/external-ai-gateway.mjs",
"lint:deps": "node scripts/checks/dependency-pins.mjs",
"lint:deps:why": "node scripts/checks/dependency-rationale.mjs",
"lint:actions": "node scripts/checks/action-pins.mjs",
"lint:skills": "node scripts/checks/agent-skills.mjs",
"lint:tauri-invokes": "node scripts/checks/tauri-invokes.mjs",
"lint:tests": "node scripts/checks/test-quality.mjs",
"harness:check": "node scripts/checks/harness.mjs",
"harness:plan": "node scripts/harness/plan.mjs",
"harness:session": "node scripts/harness/session.mjs",
"macos:readiness": "node scripts/release/check-macos-readiness.mjs",
"doctor": "node scripts/dev/doctor.mjs",
"doctor:e2e": "node scripts/dev/doctor.mjs --e2e",
"clean:generated": "node scripts/dev/clean-generated-artifacts.mjs",
"release:check-version": "node scripts/release/validate-release-version.mjs",
"release:check-deps": "node scripts/checks/dependency-pins.mjs --latest && node scripts/checks/action-pins.mjs --latest",
"release:check-env": "node scripts/release/check-release-environment.mjs",
"release:readiness": "node scripts/release/check-release-readiness.mjs",
"release:sbom": "node scripts/release/generate-release-sbom.mjs",
"release:skills": "node scripts/release/package-agent-skills.mjs",
"release:verify:public": "node scripts/release/verify-public-release-assets.mjs",
"sqlx:prepare": "node scripts/checks/sqlx-metadata.mjs --write",
"lint:harness": "npm run harness:check",
"lint:docs": "npm run harness:check && npm run lint:md && npm run lint:links && npm run lint:prose",
"test": "vitest",
"test:run": "vitest run",
"test:smoke": "vitest run src/app/App.startup.test.tsx",
"test:scripts": "node scripts/harness/run-script-tests.mjs",
"test:coverage": "vitest run --coverage",
"test:e2e": "node scripts/dev/run-playwright.mjs test --project=chromium",
"test:e2e:smoke": "node scripts/dev/run-playwright.mjs test --project=chromium --grep @smoke",
"test:e2e:smoke:budget": "node scripts/dev/e2e-budget.mjs --max-duration-ms 30000 --max-tests 25 -- test --project=chromium --grep @smoke",
"test:e2e:smoke:all": "node scripts/dev/run-playwright.mjs test --grep @smoke",
"test:e2e:all:budget": "node scripts/dev/e2e-budget.mjs --max-duration-ms 240000 --max-tests 320 -- test",
"test:e2e:last-failed": "node scripts/dev/run-playwright.mjs test --last-failed",
"test:e2e:all": "node scripts/dev/run-playwright.mjs test",
"test:e2e:ui": "node scripts/dev/run-playwright.mjs test --project=chromium --ui",
"test:e2e:headed": "node scripts/dev/run-playwright.mjs test --project=chromium --headed",
"verify:rust": "node scripts/dev/run-cargo.mjs fmt --all -- --check && node scripts/dev/run-cargo.mjs clippy --workspace -- -D warnings && node scripts/dev/run-cargo.mjs test --workspace",
"verify:full": "npm run harness:check && npm run doctor && npm run lint:architecture && npm run lint:security && npm run lint:bloat && npm run lint:deps && npm run lint:deps:why && npm run lint:actions && npm run lint:sqlx && npm run lint:dup && npm run lint:tests && npm run lint:tauri-invokes && npm run lint:md && npm run lint:prose && npm run lint:language && npm run typecheck && npm run lint && npm run lint:scripts && npm run test:scripts && npm run test:run && npm run build && npm run build-storybook && npm run doctor:e2e && npm run test:e2e:smoke:budget && npm run verify:rust && git diff --check",
"docs:screenshots": "node scripts/dev/update-doc-screenshots.mjs",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:linux-appimage": "node scripts/platform/build-linux-appimage.mjs",
"tauri:build:macos": "node scripts/platform/build-macos-dmg.mjs",
"tauri:verify:macos": "node scripts/release/verify-macos-package.mjs",
"tauri:verify:macos:latest": "node scripts/release/verify-latest-macos-release.mjs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky"
},
"dependencies": {
"@dnd-kit/core": "6.3.1",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@tauri-apps/api": "2.11.1",
"@tauri-apps/plugin-notification": "2.3.3",
"dompurify": "3.4.12",
"react": "19.2.7",
"react-dom": "19.2.7",
"recharts": "3.9.2",
"web-vitals": "5.3.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "1.61.1",
"@storybook/addon-a11y": "10.5.2",
"@storybook/addon-docs": "10.5.2",
"@storybook/addon-vitest": "10.5.2",
"@storybook/react-vite": "10.5.2",
"@tailwindcss/vite": "4.3.3",
"@tauri-apps/cli": "2.11.4",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.3",
"@vitest/browser-playwright": "4.1.10",
"@vitest/coverage-v8": "4.1.10",
"autoprefixer": "10.5.4",
"eslint": "10.7.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.3",
"eslint-plugin-storybook": "10.5.2",
"globals": "17.7.0",
"husky": "9.1.7",
"jsdom": "29.1.1",
"lint-staged": "17.0.8",
"markdownlint-cli": "0.49.1",
"postcss": "8.5.19",
"storybook": "10.5.2",
"tailwindcss": "4.3.3",
"typescript": "6.0.3",
"typescript-eslint": "8.64.0",
"vite": "8.1.5",
"vitest": "4.1.10"
},
"overrides": {
"semver": "7.8.5",
"@reduxjs/toolkit": {
"reselect": "5.2.0"
},
"@testing-library/jest-dom": {
"aria-query": "5.3.2"
}
}
}