-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.4 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.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
{
"name": "workday-debrief",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:lean": "bash ./scripts/dev-lean.sh",
"build": "tsc -b && vite build",
"clean:heavy": "node ./scripts/cleanup.mjs heavy",
"clean:full": "node ./scripts/cleanup.mjs full",
"clean": "npm run clean:full",
"preview": "vite preview",
"tauri": "tauri",
"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": "npm run git:guard:branch && npm run git:guard:atomic && npm run git:guard:generated && npm run git:guard:large-files && npm run 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",
"lint-staged": "lint-staged"
},
"dependencies": {
"@tauri-apps/api": "^2.11.0",
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.2",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"tailwindcss": "^4.3.0",
"typescript": "~5.8.3",
"vite": "^6.0.11",
"@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",
"prettier": "^3.8.3"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,json,md,css,scss,yml,yaml}": [
"prettier --write"
]
}
}