Work towards local build
Swapping around dependencies/devdependencies as I've found was needed. Additionally added a new shortcut command for starting local (based on the sequence of commands I was running from docker.
... | ... | @@ -23,13 +23,14 @@ |
"e2e:ff": "testcafe firefox:headless testing/main.e2e.js -r spec,json:testing/reports/ff.json", | ||
"e2e:edge": "testcafe edge testing/main.e2e.js -r spec,json:testing/reports/edge.json", | ||
"e2e:all": "npm run e2e:chrome && npm run e2e:ff", | ||
"start:ci": "serve -s build -l 3000" | ||
"start:ci": "serve -s build -l 3000", | ||
"start:local": "npm install -g serve && npm run build && serve -s build" | ||
}, | ||
"author": "Joe Ziemba", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@craco/craco": "^6.3.0", | ||
"@tailwindcss/postcss7-compat": "^2.2.17", | ||
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17", | ||
"firebase": "^8.10.0", | ||
"focus-trap-react": "^8.8.2", | ||
"js-guid": "^1.0.0", | ||
... | ... | @@ -45,6 +46,7 @@ |
"react-transition-group": "^4.4.2", | ||
"sass": "^1.43.2", | ||
"serve": "^12.0.1" | ||
"eslint-plugin-prettier": "^3.4.1", | ||
}, | ||
"browserslist": [ | ||
">0.2%", | ||
... | ... | @@ -58,15 +60,13 @@ |
"autoprefixer": "^9.8.8", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-jest": "^24.7.0", | ||
"eslint-plugin-jsx-a11y": "^6.4.1", | ||
"eslint-plugin-prettier": "^3.4.1", | ||
"eslint-plugin-jsx-a11y": "^6.4.1", | ||
"eslint-plugin-react": "^7.26.1", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
"jest-environment-jsdom-sixteen": "^2.0.0", | ||
"node-sass": "^6.0.1", | ||
"postcss": "^7.0.39", | ||
"prettier": "^2.4.1", | ||
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17", | ||
"prettier": "^2.4.1", | ||
"testcafe": "^1.16.1" | ||
}, | ||
"jest": { | ||
... | ... |
Please register or sign in to comment