treeherder/package.json

112 строки
4.0 KiB
JSON
Исходник Обычный вид История

2014-04-08 21:40:33 +04:00
{
"name": "treeherder",
"description": "Mozilla Treeherder reporting dashboard",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/treeherder.git"
},
"license": "MPL-2.0",
"engines": {
2019-11-27 22:52:02 +03:00
"node": "12.13.1",
2019-12-02 22:22:20 +03:00
"yarn": "1.21.0"
},
"resolutions": {
"d3": "5.14.2"
},
"dependencies": {
2019-10-02 23:25:15 +03:00
"@fortawesome/fontawesome-svg-core": "1.2.25",
"@fortawesome/free-brands-svg-icons": "5.11.2",
"@fortawesome/free-regular-svg-icons": "5.11.2",
"@fortawesome/free-solid-svg-icons": "5.11.2",
"@fortawesome/react-fontawesome": "0.1.8",
2019-11-13 16:07:50 +03:00
"@neutrinojs/copy": "9.0.0-rc.5",
"@neutrinojs/react": "9.0.0-rc.5",
"@types/prop-types": "*",
"@types/react": "*",
"@types/react-dom": "*",
2019-07-24 02:18:47 +03:00
"ajv": "6.10.2",
2019-08-06 07:23:47 +03:00
"auth0-js": "9.11.3",
"bootstrap": "4.3.1",
"d3": "5.14.2",
"fuse.js": "3.4.6",
2019-09-14 05:35:11 +03:00
"history": "4.10.1",
"jquery": "3.4.1",
2019-08-07 17:01:13 +03:00
"js-cookie": "2.2.1",
2019-04-06 19:26:01 +03:00
"js-yaml": "3.13.1",
2019-07-20 04:26:05 +03:00
"json-e": "3.0.1",
"json-schema-defaults": "0.4.0",
2019-07-22 22:39:09 +03:00
"lodash": "4.17.15",
"metrics-graphics": "2.15.6",
2019-01-23 00:34:05 +03:00
"moment": "2.24.0",
2019-03-05 20:40:12 +03:00
"mousetrap": "1.6.3",
2019-11-13 16:07:50 +03:00
"neutrino": "9.0.0-rc.5",
"ng-text-truncate-2": "1.0.1",
"numeral": "2.0.6",
"prop-types": "15.7.2",
"query-string": "6.9.0",
"react": "16.12.0",
"react-day-picker": "7.4.0",
"react-dom": "16.12.0",
"react-helmet": "5.2.1",
"react-highlight-words": "0.16.0",
"react-hot-loader": "4.12.18",
"react-hotkeys": "1.1.4",
"react-lazylog": "4.4.4",
"react-linkify": "0.2.2",
"react-markdown": "4.2.2",
"react-redux": "7.1.3",
"react-router-dom": "5.1.2",
"react-split-pane": "0.1.89",
"react-table": "6.10.3",
2019-01-05 09:22:32 +03:00
"react-tabs": "3.0.0",
"reactstrap": "7.1.0",
2019-07-11 22:24:48 +03:00
"redux": "4.0.4",
"redux-debounce": "1.0.1",
"redux-mock-store": "1.5.3",
"redux-thunk": "2.3.0",
"taskcluster-client-web": "8.1.1",
"taskcluster-lib-scopes": "10.0.2",
"taskcluster-lib-urls": "13.0.0",
"victory": "33.1.7",
2019-10-16 16:23:58 +03:00
"webpack": "4.41.2",
"webpack-cli": "3.3.10"
2014-04-08 21:40:33 +04:00
},
"devDependencies": {
2019-11-13 16:07:50 +03:00
"@neutrinojs/eslint": "9.0.0-rc.5",
"@neutrinojs/jest": "9.0.0-rc.5",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"codecov": "3.6.1",
2019-02-18 11:24:31 +03:00
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.15.1",
"eslint": "6.7.2",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.1.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.16.0",
"fetch-mock": "8.0.1",
2019-08-17 09:41:01 +03:00
"jest": "24.9.0",
2019-05-17 10:22:06 +03:00
"node-fetch": "2.6.0",
"prettier": "1.19.1",
"webpack-dev-server": "3.9.0"
},
2014-04-08 21:40:33 +04:00
"scripts": {
Bug 1364894 - Upgrade from Neutrino 4 to 9 (#4216) Neutrino controls our frontend linting, transpilation, source-maps, testing, dev-server and optimisation of production builds. Highlights of the upgrade are: * Major version updates to the individual tools within (such as webpack, Babel and ESLint), significantly improving performance, fixing transpilation/minification correctness bugs, adding support for newer ECMAScript features, and increasing linter coverage. * Hot reloading in the dev server now works for all entry-points and not just the jobs view, shortening the feedback cycle. * Reduced bundle size due to webpack 4's tree shaking, scope hoisting, automatic shared/vendor code chunk splitting (no need for the manually maintained 'vendor' list). * CSS is now extracted out of JS, which improves performance, reduces bundle size and prevents the initial white flash of un-styled content. * Support for dynamic imports/code splitting (needed for bug 1502192). * Support for Jest via a new Jest preset (unblocks bug 1364045). * Support for public class field declarations (unblocks bug 1480166). * Improved source-maps (increases the quality of production exception trace-backs and fixes several debugger breakpoint bugs). * Reduced amount of custom configuration required for our fairly complex frontend needs, reducing maintenance burden and allowing for easier future Neutrino upgrades. In addition this PR: * Fixes the WhiteNoise `immutable_file_test()` regex, so that it now correctly enables browser caching of images, fonts and source maps. * Enables webpack-dev-server's overlay feature, which displays any compilation errors in the browser, saving having to switch back to the console (this can be enabled for warnings too if desired). * Enables webpack-dev-server's automatic browser-opening feature, which saves having to manually navigate to `localhost:5000` after running `yarn start`. * Switches Karma tests to run Firefox in headless mode, reducing the workflow disruption when running `yarn test`. * Uses the new webpack `performance` option to enable maximum asset file size thresholds, to help prevent bundle-size regressions. * Rewrites the `package.json` script commands so that they now work correctly on Windows, even when setting environment variables. Performance comparison: * Local `yarn build`: - Cached: 2m34s -> 23s - Uncached: 2m34s -> 58s * Local `yarn start`: - Cached: 34.5s -> 13.6s - Uncached: 34.5s -> 31.3s * Local `yarn test` - Cached: 61.5s -> 19.8s - Uncached: 61.5s -> 22.0s * Local `yarn lint` - Cached: 3.8s -> 1.8s - Uncached: 13.7s -> 13.4s * Travis end-to-end time: 9 minutes -> 6 minutes * Heroku deploy end-to-end time: 14 minutes -> 9 minutes
2018-11-02 21:48:28 +03:00
"build": "node ./node_modules/webpack/bin/webpack.js --mode production",
"build:dev": "node ./node_modules/webpack/bin/webpack.js --mode development",
"codecov": "node ./node_modules/codecov/bin/codecov && rm -rf coverage",
"format": "node ./node_modules/prettier/bin-prettier.js --write \"**/*.{css,html,js,jsx,json,md,yaml,yml}\"",
"format:check": "node ./node_modules/prettier/bin-prettier.js --check \"**/*.{css,html,js,jsx,json,md,yaml,yml}\"",
Bug 1364894 - Upgrade from Neutrino 4 to 9 (#4216) Neutrino controls our frontend linting, transpilation, source-maps, testing, dev-server and optimisation of production builds. Highlights of the upgrade are: * Major version updates to the individual tools within (such as webpack, Babel and ESLint), significantly improving performance, fixing transpilation/minification correctness bugs, adding support for newer ECMAScript features, and increasing linter coverage. * Hot reloading in the dev server now works for all entry-points and not just the jobs view, shortening the feedback cycle. * Reduced bundle size due to webpack 4's tree shaking, scope hoisting, automatic shared/vendor code chunk splitting (no need for the manually maintained 'vendor' list). * CSS is now extracted out of JS, which improves performance, reduces bundle size and prevents the initial white flash of un-styled content. * Support for dynamic imports/code splitting (needed for bug 1502192). * Support for Jest via a new Jest preset (unblocks bug 1364045). * Support for public class field declarations (unblocks bug 1480166). * Improved source-maps (increases the quality of production exception trace-backs and fixes several debugger breakpoint bugs). * Reduced amount of custom configuration required for our fairly complex frontend needs, reducing maintenance burden and allowing for easier future Neutrino upgrades. In addition this PR: * Fixes the WhiteNoise `immutable_file_test()` regex, so that it now correctly enables browser caching of images, fonts and source maps. * Enables webpack-dev-server's overlay feature, which displays any compilation errors in the browser, saving having to switch back to the console (this can be enabled for warnings too if desired). * Enables webpack-dev-server's automatic browser-opening feature, which saves having to manually navigate to `localhost:5000` after running `yarn start`. * Switches Karma tests to run Firefox in headless mode, reducing the workflow disruption when running `yarn test`. * Uses the new webpack `performance` option to enable maximum asset file size thresholds, to help prevent bundle-size regressions. * Rewrites the `package.json` script commands so that they now work correctly on Windows, even when setting environment variables. Performance comparison: * Local `yarn build`: - Cached: 2m34s -> 23s - Uncached: 2m34s -> 58s * Local `yarn start`: - Cached: 34.5s -> 13.6s - Uncached: 34.5s -> 31.3s * Local `yarn test` - Cached: 61.5s -> 19.8s - Uncached: 61.5s -> 22.0s * Local `yarn lint` - Cached: 3.8s -> 1.8s - Uncached: 13.7s -> 13.4s * Travis end-to-end time: 9 minutes -> 6 minutes * Heroku deploy end-to-end time: 14 minutes -> 9 minutes
2018-11-02 21:48:28 +03:00
"heroku-postbuild": "yarn build",
"lint": "node ./node_modules/eslint/bin/eslint.js --report-unused-disable-directives --max-warnings 0 --format codeframe --ext js,jsx \".*.js\" \"*.js\" ui/ tests/ui/",
"lint-with-cache": "node ./node_modules/eslint/bin/eslint.js --cache --report-unused-disable-directives --max-warnings 0 --format codeframe --ext js,jsx \".*.js\" \"*.js\" ui/ tests/ui/",
Bug 1364894 - Upgrade from Neutrino 4 to 9 (#4216) Neutrino controls our frontend linting, transpilation, source-maps, testing, dev-server and optimisation of production builds. Highlights of the upgrade are: * Major version updates to the individual tools within (such as webpack, Babel and ESLint), significantly improving performance, fixing transpilation/minification correctness bugs, adding support for newer ECMAScript features, and increasing linter coverage. * Hot reloading in the dev server now works for all entry-points and not just the jobs view, shortening the feedback cycle. * Reduced bundle size due to webpack 4's tree shaking, scope hoisting, automatic shared/vendor code chunk splitting (no need for the manually maintained 'vendor' list). * CSS is now extracted out of JS, which improves performance, reduces bundle size and prevents the initial white flash of un-styled content. * Support for dynamic imports/code splitting (needed for bug 1502192). * Support for Jest via a new Jest preset (unblocks bug 1364045). * Support for public class field declarations (unblocks bug 1480166). * Improved source-maps (increases the quality of production exception trace-backs and fixes several debugger breakpoint bugs). * Reduced amount of custom configuration required for our fairly complex frontend needs, reducing maintenance burden and allowing for easier future Neutrino upgrades. In addition this PR: * Fixes the WhiteNoise `immutable_file_test()` regex, so that it now correctly enables browser caching of images, fonts and source maps. * Enables webpack-dev-server's overlay feature, which displays any compilation errors in the browser, saving having to switch back to the console (this can be enabled for warnings too if desired). * Enables webpack-dev-server's automatic browser-opening feature, which saves having to manually navigate to `localhost:5000` after running `yarn start`. * Switches Karma tests to run Firefox in headless mode, reducing the workflow disruption when running `yarn test`. * Uses the new webpack `performance` option to enable maximum asset file size thresholds, to help prevent bundle-size regressions. * Rewrites the `package.json` script commands so that they now work correctly on Windows, even when setting environment variables. Performance comparison: * Local `yarn build`: - Cached: 2m34s -> 23s - Uncached: 2m34s -> 58s * Local `yarn start`: - Cached: 34.5s -> 13.6s - Uncached: 34.5s -> 31.3s * Local `yarn test` - Cached: 61.5s -> 19.8s - Uncached: 61.5s -> 22.0s * Local `yarn lint` - Cached: 3.8s -> 1.8s - Uncached: 13.7s -> 13.4s * Travis end-to-end time: 9 minutes -> 6 minutes * Heroku deploy end-to-end time: 14 minutes -> 9 minutes
2018-11-02 21:48:28 +03:00
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development",
"start:stage": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --env.BACKEND=https://treeherder.allizom.org",
"test:coverage": "node ./node_modules/jest/bin/jest --coverage",
"test": "node ./node_modules/jest/bin/jest",
"test:watch": "node ./node_modules/jest/bin/jest --watch"
2014-04-08 21:40:33 +04:00
}
}