-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.77 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.77 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
{
"name": "tauri-app",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lean:dev": "bash scripts/dev-lean.sh",
"clean:heavy": "bash scripts/clean-heavy.sh",
"clean:local": "bash scripts/clean-local.sh",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"type-check": "tsc --noEmit",
"typecheck": "pnpm type-check",
"lint": "eslint src --ext .ts,.tsx --max-warnings 0",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,md}\"",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"prepare": "husky",
"commit": "cz",
"commitlint": "commitlint",
"git:guard:branch": "bash scripts/git/guard-branch.sh",
"git:guard:no-main-push": "bash scripts/git/guard-no-main-push.sh",
"git:guard:atomic": "bash scripts/git/guard-atomic.sh",
"git:guard:generated": "bash scripts/git/guard-generated.sh",
"git:guard:large-files": "bash scripts/git/guard-large-files.sh",
"git:guard:secrets": "bash scripts/git/guard-secrets.sh",
"git:guard:all": "pnpm git:guard:branch && pnpm git:guard:atomic && pnpm git:guard:generated && pnpm git:guard:large-files && pnpm git:guard:secrets",
"git:commit:propose": "node scripts/git/propose-commit-message.mjs",
"git:session:save": "bash scripts/git/session-save.sh",
"git:session:resume": "bash scripts/git/session-resume.sh",
"pr:notes": "bash scripts/git/generate-pr-notes.sh",
"perf:bundle": "node scripts/perf/bundle-report.mjs",
"perf:build": "node scripts/perf/measure-build-time.mjs",
"perf:assets": "bash scripts/perf/check-assets.sh",
"perf:memory": "node --expose-gc scripts/perf/memory-smoke.mjs",
"perf:summary": "node scripts/perf/summarize.mjs",
"test:integration": "cargo test --manifest-path src-tauri/Cargo.toml --lib",
"test:e2e:smoke": "vitest run src/lib/contentValidation.test.ts src/components/input/GenerateButton.test.tsx",
"docs:generate": "node scripts/docs/generate-contract.mjs",
"docs:check": "node scripts/docs/check-contract.mjs",
"release:verify-version": "node scripts/release/verify-version-sync.mjs",
"release:collect-artifacts": "bash scripts/release/collect-artifacts.sh",
"lint-staged": "lint-staged"
},
"dependencies": {
"@tauri-apps/api": "^2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.13.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^8.57.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^28.0.0",
"prettier": "^3.2.5",
"tailwindcss": "^4.1.18",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitest": "^4.0.18",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/cz-commitlint": "^19.8.1",
"@lhci/cli": "^0.15.1",
"commitizen": "^4.3.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.2"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,json,md,css,scss,yml,yaml}": [
"prettier --write"
]
}
}