forked from dapperdivers/developer-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
170 lines (170 loc) · 6.56 KB
/
package.json
File metadata and controls
170 lines (170 loc) · 6.56 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "developer-portfolio",
"version": "1.0.0",
"type": "module",
"description": "Software Developer Portfolio Template built with react.js",
"main": "index.jsx",
"engines": {
"node": ">=22.0.0"
},
"packageManager": "yarn@1.22.22",
"repository": "https://github.com/DapperDivers/developer-portfolio.git",
"author": "Derek Mackley",
"license": "MIT",
"dependencies": {
"@iconify-json/logos": "^1.2.4",
"@iconify-json/simple-icons": "^1.2.27",
"@iconify-json/vscode-icons": "^1.2.16",
"@iconify/react": "^5.2.0",
"@vitejs/plugin-react": "^4.3.4",
"axios": "^1.8.1",
"classnames": "^2.5.1",
"colorthief": "^2.6.0",
"dotenv": "^16.4.7",
"esbuild": "^0.25.0",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"framer-motion": "^11.18.2",
"helmet": "^8.0.0",
"leaflet": "^1.9.4",
"lottie-react": "^2.4.1",
"node-fetch": "^3.3.2",
"node-stdlib-browser": "^1.3.1",
"prop-types": "^15.8.1",
"prop-types-extra": "^1.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-icons": "^5.5.0",
"smoothscroll-polyfill": "^0.4.4",
"vite": "^6.2.1",
"vite-plugin-pwa": "^0.21.1",
"workbox-build": "^7.3.0",
"workbox-window": "^7.3.0"
},
"scripts": {
"dev": "vite",
"dev:all": "./scripts/dev-all.sh",
"dev:all:full": "concurrently --kill-others --prefix-colors \"cyan,magenta,yellow,green\" --prefix \"[{name}]\" --names \"vite,storybook,docs,server\" --timestamp-format \"HH:mm:ss\" \"vite --port 5173 --host\" \"storybook dev -p 6006 --host 0.0.0.0\" \"cd docs && bundle install && bundle exec jekyll serve --watch --livereload --host 0.0.0.0\" \"PORT=3001 node server.js\"",
"dev:frontend": "concurrently --kill-others --prefix-colors \"cyan,magenta\" --prefix \"[{name}]\" --names \"vite,storybook\" --timestamp-format \"HH:mm:ss\" \"vite\" \"storybook dev -p 6006 --host 0.0.0.0\"",
"dev:minimal": "concurrently --kill-others --prefix-colors \"cyan,green\" --prefix \"[{name}]\" --names \"vite,server\" --timestamp-format \"HH:mm:ss\" \"vite\" \"node server.js\"",
"dev:docs": "cd docs && bundle install && bundle exec jekyll serve --watch --livereload --host 0.0.0.0",
"dev:enhanced": "node scripts/dev.js all",
"dev:help": "node scripts/dev.js --help",
"dev:status": "node scripts/dev-status.js",
"preview": "vite preview",
"serve": "node server.js",
"build": "vite build",
"build:prod": "NODE_ENV=production vite build",
"build:dev": "NODE_ENV=development vite build",
"build:analyze": "ANALYZE=true vite build",
"build:full": "npm-run-all check build:prod",
"build:site-navigator": "node scripts/build-site-navigator.js",
"storybook": "storybook dev -p 6006 --host 0.0.0.0",
"storybook:build": "storybook build",
"storybook:test": "test-storybook",
"generate-story": "node scripts/generate.js --type=story",
"test": "vitest --config vitest.config.ts",
"test:watch": "vitest --watch --config vitest.config.ts",
"check": "npm-run-all --parallel typecheck lint",
"check:fix": "npm-run-all format lint:fix typecheck",
"check:ci": "npm-run-all typecheck lint:ci",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"lint:ci": "eslint src --ext .js,.jsx,.ts,.tsx --max-warnings 9999 --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css}\"",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"optimize": "npm-run-all optimize:*",
"optimize:images": "node scripts/optimize-images.js",
"optimize:svgs": "node scripts/optimize-svgs.js",
"optimize:imports": "node scripts/standardize-react-imports.js",
"clean": "rm -rf node_modules .cache dist build",
"clean:all": "npm-run-all clean clean:build",
"clean:build": "rm -rf build",
"reinstall": "yarn clean && yarn",
"validate": "node scripts/validate-config.js",
"generate": "node scripts/generate-asset-metadata.js",
"cleanup": "node scripts/cleanup-repo.js",
"restore": "node scripts/restore-context-files.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"overrides": {
"esbuild": "^0.25.0"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@chromatic-com/storybook": "^4.1.0",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@playwright/test": "^1.51.0",
"@storybook/addon-docs": "9.1.2",
"@storybook/addon-links": "9.1.2",
"@storybook/addon-onboarding": "9.1.2",
"@storybook/react-vite": "9.1.2",
"@storybook/test": "^8.6.14",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@vitest/browser": "^3.0.7",
"@vitest/coverage-v8": "^3.0.7",
"autoprefixer": "^10.4.20",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chalk": "^5.4.1",
"concurrently": "^9.2.0",
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
"eslint": "9.21.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-module-resolver": "^1.5.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-storybook": "^9.1.2",
"fs-extra": "^11.3.0",
"glob": "^11.0.1",
"globals": "^16.0.0",
"identity-obj-proxy": "^3.0.0",
"jiti": "^2.4.2",
"jsdom": "^26.0.0",
"npm-check-updates": "^16.14.20",
"npm-run-all": "^4.1.5",
"playwright": "^1.50.1",
"postcss": "^8.5.3",
"postcss-import": "^16.1.0",
"prettier": "^3.5.3",
"puppeteer": "^24.4.0",
"rollup-plugin-visualizer": "^5.14.0",
"sharp": "^0.33.5",
"storybook": "9.1.2",
"svgo": "^3.3.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2",
"vite-plugin-node-stdlib-browser": "^0.2.1",
"vitest": "^3.0.7",
"yarn": "^1.22.22"
}
}