Skip to content

Commit

Permalink
Removes Playwright from production installation (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
caesarv16 authored Dec 12, 2023
1 parent 3080647 commit 0d52819
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
3 changes: 2 additions & 1 deletion client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ the application.
```bash
cd client
yarn install #install the nodejs dependencies
yarn install --production # install dependencies without Playwright and devDependencies
yarn format #format .ts[x] and .js[x] files with prettier.
yarn syntax #perform linting and static analysis
yarn graph # generate dependency graphs in the code
yarn graph # generate dependency graphs in the code
yarn build #build the react app into build/ directory
yarn develop #start the development server without building. Great for live edits.

Expand Down
26 changes: 13 additions & 13 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,19 @@
"resize-observer-polyfill": "^1.5.1",
"serve": "^14.2.1",
"styled-components": "^6.1.1",
"typescript": "^4.9.5"
"typescript": "^4.9.5",
"react-iframe": "^1.8.5",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"@types/styled-components": "^5.1.32",
"eslint": "^8.54.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.3",
Expand All @@ -68,22 +80,10 @@
"@types/jest": "^29.5.10",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"@types/styled-components": "^5.1.32",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"playwright": "^1.32.1",
"prettier": "3.1.0",
"react-iframe": "^1.8.5",
"react-scripts": "^5.0.1",
"ts-jest": "^29.1.1"
},
"browserslist": {
Expand Down

0 comments on commit 0d52819

Please sign in to comment.