Skip to content

Commit

Permalink
[#123] Move devDependencies next to the dependencies for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
rosle authored and carryall committed Oct 2, 2022
1 parent 295cda6 commit 28a0c11
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions packages/cra-template/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,29 @@
"sass": "1.49.11",
"web-vitals": "2.1.4"
},
"devDependencies": {
"@cypress/code-coverage": "3.9.12",
"@nimblehq/eslint-config-nimble-react": "^1.0.0",
"@nimblehq/stylelint-config-nimble": "^1.0.0",
"@testing-library/cypress": "8.0.2",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.1.1",
"@testing-library/user-event": "14.1.1",
"@types/jest": "27.4.1",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"@types/react-dom": "17.0.13",
"@cypress/instrument-cra": "1.4.0",
"cypress": "9.5.2",
"cypress-react-selector": "2.3.16",
"danger": "10.9.0",
"danger-plugin-istanbul-coverage": "1.6.2",
"eslint": "8.11.0",
"prettier": "2.6.0",
"start-server-and-test": "1.14.0",
"stylelint": "14.6.0",
"typescript": "4.6.2"
},
"scripts": {
"start": "react-scripts -r @cypress/instrument-cra start",
"test:coverage": "react-scripts test --coverage --watchAll=false && npm run cypress:run && node ./scripts/coverage-merge.js && nyc report",
Expand Down Expand Up @@ -39,29 +62,6 @@
"src/reportWebVitals.ts"
],
"excludeAfterRemap": true
},
"devDependencies": {
"@cypress/code-coverage": "3.9.12",
"@nimblehq/eslint-config-nimble-react": "^1.0.0",
"@nimblehq/stylelint-config-nimble": "^1.0.0",
"@testing-library/cypress": "8.0.2",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.1.1",
"@testing-library/user-event": "14.1.1",
"@types/jest": "27.4.1",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"@types/react-dom": "17.0.13",
"@cypress/instrument-cra": "1.4.0",
"cypress": "9.5.2",
"cypress-react-selector": "2.3.16",
"danger": "10.9.0",
"danger-plugin-istanbul-coverage": "1.6.2",
"eslint": "8.11.0",
"prettier": "2.6.0",
"start-server-and-test": "1.14.0",
"stylelint": "14.6.0",
"typescript": "4.6.2"
}
}
}

0 comments on commit 28a0c11

Please sign in to comment.