This repository was archived by the owner on Mar 22, 2026. It is now read-only.
forked from turaling/vscode-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.8 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.8 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
{
"name": "developer-portfolio-app",
"version": "2.0.0",
"description": "VS Code/Atom One Dark inspired developer portfolio app.",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/GhazTools/PersonalWebsite"
},
"homepage": "https://ghaz.dev",
"license": "GNU GPLv3",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"lint:ci": "npm run lint -- --quiet",
"lint:fix": "npm run lint -- --fix",
"lint-staged": "lint-staged",
"progress": "ts-node -O '{\"module\":\"commonjs\"}' scripts/updateProgress.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/icons-material": "^7.3.6",
"@mui/material": "^7.3.6",
"@types/react-vertical-timeline-component": "^3.3.6",
"clsx": "^2.1.1",
"color": "^4.2.3",
"dayjs": "^1.11.13",
"dotenv": "^17.2.3",
"framer-motion": "^12.23.26",
"normalize.css": "^8.0.1",
"react": "^18.3.1",
"react-circular-progressbar": "^2.1.0",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-jss": "^10.10.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.28.0",
"react-tooltip": "^5.28.0",
"react-vertical-timeline-component": "^3.5.3",
"typed.js": "^2.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/color": "^3.0.6",
"@types/jest": "^29.5.14",
"@types/node": "^25.0.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"husky": "^9.1.7",
"jsdom": "^27.3.0",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vitest": "^4.0.15"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}