- 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.
37 lines
949 B
JSON
37 lines
949 B
JSON
{
|
|
"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"
|
|
}
|
|
} |