-
- Downloads
closes #76
includes required linting changes to pass build and tests
Showing
- .babelrc 1 addition, 1 deletion.babelrc
- .eslintignore 2 additions, 2 deletions.eslintignore
- .eslintrc 3 additions, 1 deletion.eslintrc
- .gitignore 2 additions, 2 deletions.gitignore
- config/paths.js 98 additions, 0 deletionsconfig/paths.js
- package-lock.json 12046 additions, 8460 deletionspackage-lock.json
- package.json 21 additions, 15 deletionspackage.json
- src/components/App.js 9 additions, 4 deletionssrc/components/App.js
- src/components/Display.js 4 additions, 2 deletionssrc/components/Display.js
- src/components/ManifestForm.js 6 additions, 3 deletionssrc/components/ManifestForm.js
- src/components/ManifestMetadata.js 3 additions, 2 deletionssrc/components/ManifestMetadata.js
- src/components/Window.js 11 additions, 6 deletionssrc/components/Window.js
- src/components/WindowTopBar.js 3 additions, 2 deletionssrc/components/WindowTopBar.js
- src/index.js 0 additions, 2 deletionssrc/index.js
- webpack.config.js 50 additions, 11 deletionswebpack.config.js
config/paths.js
0 → 100644
This diff is collapsed.
... | ... | @@ -8,9 +8,12 @@ |
"server": "node_modules/.bin/http-server", | ||
"test": "npm run build && npm run lint && node_modules/.bin/jest", | ||
"test:watch": "npm test -- --watch", | ||
"build": "node_modules/.bin/webpack", | ||
"build:watch": "node_modules/.bin/webpack --watch", | ||
"start": "npm run build && concurrently \"npm run build:watch\" \"npm run server -- -p 4444\"" | ||
"build": "NODE_ENV=production webpack", | ||
"build:watch": "NODE_ENV=development webpack --watch", | ||
"start": "NODE_ENV=development npm run build && concurrently \"npm run build:watch\" \"npm run server -- -p 4444\"" | ||
}, | ||
"eslintConfig": { | ||
"extends": "react-app" | ||
}, | ||
"license": "Apache-2.0", | ||
"contributors": [ | ||
... | ... | @@ -34,29 +37,32 @@ |
"sass-loader": "^7.1.0" | ||
}, | ||
"devDependencies": { | ||
"babel-jest": "^22.4.1", | ||
"babel-loader": "7.1.4", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-preset-react": "^6.24.1", | ||
"babel-core": "7.0.0-bridge.0", | ||
"babel-eslint": "9.0.0", | ||
"babel-jest": "^23.6.0", | ||
"babel-plugin-named-asset-import": "^0.2.3", | ||
"babel-preset-react-app": "^6.1.0", | ||
"concurrently": "^4.0.1", | ||
"css-loader": "^1.0.0", | ||
"enzyme": "^3.4.4", | ||
"enzyme-adapter-react-16": "^1.2.0", | ||
"eslint": "^4.18.2", | ||
"eslint-config-airbnb": "^16.1.0", | ||
"eslint-loader": "^1.9.0", | ||
"eslint-plugin-import": "^2.9.0", | ||
"eslint-plugin-jest": "^21.13.0", | ||
"eslint-plugin-jsx-a11y": "^6.0.3", | ||
"eslint-plugin-react": "^7.7.0", | ||
"eslint": "^5.10.0", | ||
"eslint-config-airbnb": "^17.1.0", | ||
"eslint-loader": "^2.1.1", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-jest": "^22.1.2", | ||
"eslint-plugin-jsx-a11y": "^6.1.2", | ||
"eslint-plugin-react": "^7.11.1", | ||
"http-server": "^0.11.1", | ||
"jest": "^22.4.4", | ||
"jest-fetch-mock": "^1.5.0", | ||
"jest-puppeteer": "^3.0.1", | ||
"puppeteer": "^1.4.0", | ||
"react-dev-utils": "^6.1.1", | ||
"redux-mock-store": "^1.5.1", | ||
"style-loader": "^0.22.1", | ||
"webpack": "3.10.0" | ||
"webpack": "^4.27.1", | ||
"webpack-cli": "^3.1.2" | ||
}, | ||
"jest": { | ||
"preset": "jest-puppeteer", | ||
... | ... |
Please sign in to comment