feat: Add contributing guidelines, license, and security policy documents

- Created CONTRIBUTING.md to outline contribution process and code of conduct.
- Added LICENSE file with MIT License and third-party licenses.
- Introduced SECURITY.md detailing vulnerability reporting and security measures.
- Established README.md in assets directory for asset management and guidelines.
- Implemented index.html as the main entry point for the website.
- Configured package.json for project dependencies and scripts.
- Developed styles.css for custom styles and responsive design.
- Set up vite.config.ts for Vite configuration and build settings.
This commit is contained in:
defiQUG
2025-10-04 17:46:58 -07:00
parent 7c3fe21dfb
commit 0933c8208c
10 changed files with 1300 additions and 42 deletions

37
package.json Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "miracles-in-motion-web",
"version": "1.0.0",
"description": "Public website for Miracles In Motion 501(c)3 non-profit organization",
"main": "index.html",
"scripts": {
"dev": "live-server --port=3000",
"build": "npm run copy-files",
"copy-files": "mkdir -p dist && cp -r *.html *.jsx *.css *.js *.json assets/ dist/",
"deploy": "npm run build && gh-pages -d dist"
},
"keywords": [
"non-profit",
"charity",
"501c3",
"miracles-in-motion",
"community",
"donations",
"volunteers"
],
"author": "Miracles In Motion",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Miracles-In-Motion/public-web.git"
},
"homepage": "https://miraclesinmotion.org",
"devDependencies": {
"live-server": "^1.2.2",
"gh-pages": "^5.0.0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"framer-motion": "^10.16.4"
}
}