Files
miracles_in_motion/package.json

37 lines
949 B
JSON
Raw Normal View History

{
"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"
}
}