add react and react-dom install to circleci config

This commit is contained in:
sorrelbri 2020-02-07 18:22:32 -08:00
parent 6ce03c3449
commit 8b1ef3dbff
3 changed files with 894 additions and 9 deletions

View file

@ -45,6 +45,7 @@ jobs:
- node_modules - node_modules
key: key:
v1-dependencies-{{ checksum "package-lock.json" }} v1-dependencies-{{ checksum "package-lock.json" }}
- run: npm build - run: npm install react
- run: npm install react-dom
# run tests! # run tests!
- run: npm test - run: npm test

894
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -5,18 +5,12 @@
"test": "lerna run test", "test": "lerna run test",
"bootstrap": "lerna bootstrap" "bootstrap": "lerna bootstrap"
}, },
"presets": [
["@babel/preset-flow", {
"all": true
}]
],
"devDependencies": { "devDependencies": {
"@babel/preset-flow": "^7.8.3", "@babel/preset-flow": "^7.8.3",
"@testing-library/jest-dom": "^4.2.4", "@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0", "@testing-library/react": "^9.4.0",
"chai": "^4.2.0", "chai": "^4.2.0",
"chai-http": "^4.3.0", "chai-http": "^4.3.0",
"flow-bin": "^0.114.0",
"lerna": "^3.20.2", "lerna": "^3.20.2",
"mocha": "^7.0.0", "mocha": "^7.0.0",
"react-test-renderer": "^16.12.0" "react-test-renderer": "^16.12.0"