/opt/scirius/hunt# cat package.json { "name": "hunt", "version": "0.1.0", "private": true, "dependencies": { "@babel/polyfill": "7.0.0", "autoprefixer": "7.1.6", "axios": "^0.18.0", "babel-core": "6.26.0", "babel-eslint": "7.2.3", "babel-jest": "20.0.3", "babel-loader": "7.1.2", "babel-preset-react-app": "^3.1.1", "babel-runtime": "6.26.0", "bootstrap3": "^3.3.5", "c3": "0.4.23", "case-sensitive-paths-webpack-plugin": "2.1.1", "chalk": "1.1.3", "connected-react-router": "4.5.0", "cryptiles": "^4.1.2", "css-loader": "^2.1.1", "dotenv": "4.0.0", "dotenv-expand": "4.2.0", "extract-text-webpack-plugin": "3.0.2", "file-loader": "1.1.5", "font-awesome": "^4.7.0", "fs-extra": "3.0.1", "history": "^4.7.2", "hoist-non-react-statics": "3.0.1", "html-webpack-plugin": "2.29.0", "immutable": "3.8.2", "intl": "^1.2.5", "invariant": "^2.2.4", "jest": "^24.7.1", "lodash": "^4.17.11", "md5": "^2.2.1", "moment": "2.22.2", "node-sass-chokidar": "^1.3.4", "object-assign": "4.1.1", "patternfly": "^3.59.4", "patternfly-react": "^2.17.3", "postcss-flexbugs-fixes": "3.2.0", "postcss-loader": "^3.0.0", "promise": "8.0.1", "raf": "3.4.0", "react": "^16.3.2", "react-bootstrap": "^0.32.1", "react-dev-utils": "^5.0.1", "react-dom": "^16.3.2", "react-grid-layout": "^0.16.6", "react-json-view": "^1.17.0", "react-redux": "5.0.7", "react-router-dom": "4.3.1", "react-select": "^2.4.2", "react-shortcuts": "^2.0.0", "react-text-truncate": "^0.13.1", "redux": "^4.0.1", "redux-immutable": "^4.0.0", "redux-saga": "^0.16.2", "reselect": "^4.0.0", "resolve": "1.6.0", "store": "^2.0.12", "style-loader": "0.19.0", "sw-precache-webpack-plugin": "0.11.4", "url-loader": "0.6.2", "webpack": "3.8.1", "webpack-bundle-tracker": "^0.3.0", "webpack-dev-server": "3.1.11", "webpack-manifest-plugin": "1.3.2", "whatwg-fetch": "2.0.3" }, "devDependencies": { "eslint": "^5.16.0", "eslint-config-airbnb": "^17.1.0", "eslint-config-react-app": "^3.0.5", "eslint-import-resolver-webpack": "^0.10.1", "eslint-loader": "2.1.1", "eslint-plugin-flowtype": "3.2.0", "eslint-plugin-import": "2.14.0", "eslint-plugin-jsx-a11y": "6.1.2", "eslint-plugin-react": "7.11.1" }, "scripts": { "start": "node scripts/start.js", "build-js": "node scripts/build.js", "test": "node scripts/test.js --env=jsdom", "copy-fonts": "mkdir -p src/fonts && cp node_modules/patternfly/dist/fonts/* src/fonts", "copy-img": "cp node_modules/patternfly/dist/img/* src/img", "build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules --include-path ./node_modules/patternfly/node_modules/ --include-path=node_modules/patternfly/dist/sass/ --include-path=node_modules/patternfly/node_modules/bootstrap-sass/assets/stylesheets/ --include-path=node_modules/patternfly/node_modules/font-awesome-sass/assets/stylesheets/ --include-path=node_modules/react-grid-layout/css/ --include-path=node_modules/react-resizable/css/ --include-path=node_modules/patternfly-react/dist/sass/ src/ -o src/css/; mv src/css/containers/App/App.css src/css/", "build": "npm run copy-fonts && npm run copy-img && npm run build-css && npm run build-js" }, "jest": { "collectCoverageFrom": [ "src/**/*.{js,jsx,mjs}" ], "setupFiles": [ "/config/polyfills.js" ], "testMatch": [ "/src/**/__tests__/**/*.{js,jsx,mjs}", "/src/**/?(*.)(spec|test).{js,jsx,mjs}" ], "testEnvironment": "node", "testURL": "http://localhost", "transform": { "^.+\\.(js|jsx|mjs)$": "/node_modules/babel-jest", "^.+\\.css$": "/config/jest/cssTransform.js", "^(?!.*\\.(js|jsx|mjs|css|json)$)": "/config/jest/fileTransform.js" }, "transformIgnorePatterns": [ "[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$" ], "moduleNameMapper": { "^react-native$": "react-native-web" }, "moduleFileExtensions": [ "web.js", "js", "json", "web.jsx", "jsx", "node", "mjs" ] }, "babel": { "presets": [ "react-app" ] }, "eslintConfig": { "extends": "react-app" } }