treeherder/package.json

114 строки
3.8 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-04-30 18:22:33 +03:00
"node": "11.15.0",
2019-07-17 22:52:05 +03:00
"yarn": "1.17.3"
},
"resolutions": {
2019-06-29 08:20:09 +03:00
"d3": "5.9.7"
},
"dependencies": {
2019-06-06 00:23:28 +03:00
"@fortawesome/fontawesome-svg-core": "1.2.19",
"@fortawesome/free-brands-svg-icons": "5.9.0",
"@fortawesome/free-regular-svg-icons": "5.9.0",
"@fortawesome/free-solid-svg-icons": "5.9.0",
"@fortawesome/react-fontawesome": "0.1.4",
"@neutrinojs/copy": "9.0.0-rc.3",
"@neutrinojs/react": "9.0.0-rc.3",
"@testing-library/react": "8.0.4",
"@types/angular": "*",
"@types/prop-types": "*",
"@types/react": "*",
"@types/react-dom": "*",
"@uirouter/angularjs": "0.4.3",
2019-03-04 16:33:36 +03:00
"ajv": "6.10.0",
2019-03-12 15:24:05 +03:00
"angular": "1.7.8",
"angular-clipboard": "1.7.0",
"angular1-ui-bootstrap4": "2.4.22",
2019-06-28 23:23:47 +03:00
"auth0-js": "9.11.1",
2019-02-16 14:50:42 +03:00
"bootstrap": "4.3.1",
2019-06-29 08:20:09 +03:00
"d3": "5.9.7",
2019-05-31 07:21:39 +03:00
"fuse.js": "3.4.5",
2019-03-17 01:20:04 +03:00
"history": "4.9.0",
"jquery": "3.3.1",
"jquery.flot": "0.8.3",
"jquery.scrollto": "2.1.2",
"js-cookie": "2.2.0",
2019-04-06 19:26:01 +03:00
"js-yaml": "3.13.1",
2018-11-05 13:11:52 +03:00
"json-e": "2.7.1",
"json-schema-defaults": "0.4.0",
"lodash": "4.17.13",
"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",
"neutrino": "9.0.0-rc.3",
"ng-text-truncate-2": "1.0.1",
"numeral": "2.0.6",
2019-04-06 05:29:24 +03:00
"popper.js": "1.15.0",
"prop-types": "15.7.2",
"query-string": "6.8.1",
2019-03-29 19:52:31 +03:00
"react": "16.8.6",
"react-day-picker": "7.3.0",
2019-03-29 19:52:31 +03:00
"react-dom": "16.8.6",
"react-highlight-words": "0.16.0",
"react-hot-loader": "4.12.8",
"react-hotkeys": "1.1.4",
"react-lazylog": "4.2.0",
"react-linkify": "0.2.2",
"react-redux": "7.1.0",
"react-router-dom": "5.0.1",
"react-select": "2.4.3",
"react-split-pane": "0.1.87",
"react-table": "6.10.0",
2019-01-05 09:22:32 +03:00
"react-tabs": "3.0.0",
"react2angular": "4.0.6",
"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",
2019-07-20 03:32:29 +03:00
"webpack": "4.36.1",
"webpack-cli": "3.3.5"
2014-04-08 21:40:33 +04:00
},
"devDependencies": {
2019-05-09 23:03:35 +03:00
"@neutrinojs/eslint": "9.0.0-rc.3",
"@neutrinojs/jest": "9.0.0-rc.3",
2019-02-18 11:24:31 +03:00
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.13.2",
2019-03-31 07:24:12 +03:00
"eslint": "5.16.0",
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
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.11.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.13.0",
2019-04-24 00:28:53 +03:00
"fetch-mock": "7.3.3",
2019-05-08 23:55:26 +03:00
"jest": "24.8.0",
2019-06-09 03:29:07 +03:00
"jest-dom": "3.5.0",
2019-05-17 10:22:06 +03:00
"node-fetch": "2.6.0",
2019-06-22 01:20:09 +03:00
"prettier": "1.18.2",
2019-06-21 21:19:28 +03:00
"webpack-dev-server": "3.7.1"
},
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",
"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 --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": "node ./node_modules/jest/bin/jest",
"test:watch": "node ./node_modules/jest/bin/jest --watch"
2014-04-08 21:40:33 +04:00
}
}