-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.08 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.08 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
{
"name": "lts-commerce-site",
"version": "2.0.0",
"description": "Professional freelance PHP engineer portfolio website - React/TypeScript edition",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "node scripts/generate-snippets.mjs && tsc && vite build && vite build --ssr src/entry-server.tsx --outDir dist-server && node scripts/prerender.mjs && node scripts/generate-sitemap.mjs",
"preview": "vite preview",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"llm:lint": "eslint . --format json --output-file var/qa/eslint.json && eslint .",
"llm:type-check": "tsc --noEmit --pretty false 2>&1 | tee var/qa/typescript.log",
"llm:test": "CI=true vitest run --reporter=json --outputFile=var/qa/vitest.json",
"llm:qa": "npm run llm:type-check && npm run llm:lint && npm run llm:test",
"build:analyze": "vite build",
"screenshots": "npx tsx scripts/generate-screenshots.ts",
"llm:screenshots": "npx tsx scripts/generate-screenshots.ts"
},
"keywords": [
"react",
"typescript",
"vite",
"portfolio",
"php-engineer",
"type-safe",
"eslint"
],
"author": "Joseph Edmonds <joseph@lts.ltd>",
"license": "MIT",
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@types/highlight.js": "^9.12.4",
"embla-carousel-react": "^8.6.0",
"highlight.js": "^11.11.1",
"lucide-react": "^0.575.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.71.1",
"react-router-dom": "^7.10.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.23",
"eslint": "^9.15.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.13.0",
"happy-dom": "^20.6.3",
"playwright": "^1.58.2",
"postcss": "^8.5.6",
"prettier": "^3.0.0",
"rollup-plugin-visualizer": "^6.0.5",
"tailwindcss": "^4.1.18",
"terser": "^5.46.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "avoid",
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css"
}
}