mirror of
https://github.com/Floriansylvain/compact-portfolio.git
synced 2026-08-19 19:53:24 +02:00
- Added package.json and package-lock.json for project dependencies and metadata. - Created server.js to handle HTTP requests, serve files, and implement security headers. - Implemented minification functions for HTML, CSS, and JavaScript to optimize performance. - Added style.css for styling the application with a responsive design. - Introduced script.js for handling navigation and reveal animations. - Removed unused profile.webp image.
16 lines
289 B
JSON
16 lines
289 B
JSON
{
|
|
"name": "compact-portfolio-server",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Node server to serve minified, compressed portfolio",
|
|
"main": "server.js",
|
|
"type": "commonjs",
|
|
"scripts": {
|
|
"start": "node server.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
}
|
|
}
|
|
|