update app.json for static-site deployment on heroku

This commit is contained in:
Amruth Pillai
2020-03-30 22:37:42 +05:30
parent 43a6be112c
commit 9974f5127a
4 changed files with 242 additions and 784 deletions
+7 -6
View File
@@ -4,9 +4,10 @@
"website": "https://rxresu.me/", "website": "https://rxresu.me/",
"repository": "https://github.com/AmruthPillai/Reactive-Resume", "repository": "https://github.com/AmruthPillai/Reactive-Resume",
"logo": "https://i.imgur.com/ugpElge.png", "logo": "https://i.imgur.com/ugpElge.png",
"keywords": [ "buildpacks": [
"react", {
"resume", "url": "mars/create-react-app"
"static" }
] ],
} "keywords": ["react", "resume", "static"]
}
+222 -774
View File
File diff suppressed because it is too large Load Diff
+7 -4
View File
@@ -2,12 +2,15 @@
"name": "reactive-resume", "name": "reactive-resume",
"version": "1.0.0", "version": "1.0.0",
"private": true, "private": true,
"engines": {
"node": "13.11",
"npm": "6.14"
},
"dependencies": { "dependencies": {
"@fullhuman/postcss-purgecss": "^2.1.0", "@fullhuman/postcss-purgecss": "^2.1.0",
"@material-ui/core": "^4.9.7",
"@testing-library/jest-dom": "^5.3.0", "@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.1", "@testing-library/react": "^10.0.2",
"@testing-library/user-event": "^10.0.0", "@testing-library/user-event": "^10.0.1",
"@vuepress/plugin-google-analytics": "^1.4.0", "@vuepress/plugin-google-analytics": "^1.4.0",
"autoprefixer": "^9.7.5", "autoprefixer": "^9.7.5",
"axios": "^0.19.2", "axios": "^0.19.2",
@@ -60,7 +63,7 @@
"devDependencies": { "devDependencies": {
"eslint-config-airbnb": "^18.1.0", "eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1", "eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1", "eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2", "eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react-hooks": "^3.0.0", "eslint-plugin-react-hooks": "^3.0.0",
+6
View File
@@ -0,0 +1,6 @@
{
"root": "build/",
"routes": {
"/**": "index.html"
}
}