-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.9 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.9 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
{
"name": "coding-for-mba",
"private": true,
"version": "1.0.0",
"type": "module",
"homepage": "https://saint2706.github.io/Coding-For-MBA",
"scripts": {
"dev": "vite",
"build": "node scripts/generate-llms-txt.js && node scripts/generate-sitemap.js && tsc -b && vite build",
"analyze": "node scripts/generate-llms-txt.js && node scripts/generate-sitemap.js && tsc -b && vite build --mode analyze",
"analyze:report": "node scripts/analyze-bundle.js",
"lint": "npm run typecheck",
"typecheck": "tsc -b",
"preview": "vite preview",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"validate-content": "node scripts/validate-content.js",
"predeploy": "npm run build",
"optimize:images": "node scripts/optimize-images.js",
"deploy": "gh-pages -d dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report",
"prepare": "husky",
"lint:ci": "npm run typecheck",
"typecheck:staged": "node -e \"require('child_process').spawnSync('npm',['run','typecheck'],{stdio:'inherit',shell:true})\""
},
"dependencies": {
"@dr.pogodin/react-helmet": "^3.1.1",
"@fontsource-variable/fraunces": "^5.2.9",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"canvas-confetti": "^1.9.3",
"d3": "^7.9.0",
"fuse.js": "^7.3.0",
"motion": "^12.38.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-hot-toast": "^2.5.2",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.14.2",
"react-syntax-highlighter": "^16.1.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"overrides": {
"tmp": "^0.2.4",
"brace-expansion": "^5.0.5",
"yaml": "^2.3.4"
},
"devDependencies": {
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.59.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/canvas-confetti": "^1.6.4",
"@types/d3": "^7.4.3",
"@types/node": "^25.6.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.1.5",
"beasties": "^0.4.2",
"gh-pages": "^6.3.0",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"rollup-plugin-visualizer": "^7.0.1",
"typescript": "~6.0.3",
"vite": "^7.3.2",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,md,json}": [
"prettier --write"
],
"*.{ts,tsx}": [
"npm run typecheck:staged"
]
}
}