{ "name": "mozilla-addons-frontend", "version": "0.34.0", "description": "Universal front-end projects to complement addons-server.", "main": "index.js", "private": true, "engines": { "node": ">=14.20" }, "scripts": { "build": "npm run clean && better-npm-run build", "build:blog-utils": "npm run clean && bin/create-package-json-for-blog-utils && bin/create-readme-for-blog-utils && better-npm-run build:blog-utils", "build:blog-utils-dev": "NODE_ENV=development concurrently 'npm run build:blog-utils -- --watch' 'bin/serve-blog-utils'", "build:blog-utils-prod": "NODE_ENV=production npm run build:blog-utils", "build:qrcodes": "npm run clean && bin/fenix-qr-codes.js", "build-check": "bin/build-checks.js", "build-ci": "node --version && npm run build && npm run bundlewatch", "build-locales": "bin/build-locales", "bundlewatch": "bundlewatch", "extract-locales": "better-npm-run extract-locales", "clean": "rimraf './dist/*!(.gitkeep)' './webpack-assets.json' './src/locale/**(!.gitkeep)'", "amo:dev": "better-npm-run amo:dev", "amo:dev-https": "better-npm-run amo:dev-https", "amo:olympia": "better-npm-run amo:olympia", "amo:stage": "better-npm-run amo:stage", "amo:ui-tests": "npm run amo:olympia", "eslint": "eslint .", "flow": "flow", "flow:check": "flow check", "flow:dev": "flow stop; flow start; chokidar .flowconfig flow/ stories/ src/ tests/ -i flow/logs/flow.log -c 'flow status' --initial", "stylelint": "stylelint **/*.scss", "lint": "npm run eslint && npm run stylelint", "prettier": "prettier --write '**'", "prettier-ci": "prettier --list-different '**' || (echo '\n\nThis failure means you did not run `yarn prettier-dev` before committing\n\n' && exit 1)", "prettier-dev": "pretty-quick --branch master", "start": "npm run version-check && better-npm-run --silent node bin/server.js | pino-mozlog", "start-func-test-server": "better-npm-run node bin/start-func-test-server.js", "test-ci": "bin/config-check.js && npm run build-locales && better-npm-run test-ci", "test-ci-next": "bin/config-check.js && npm run build-locales && better-npm-run test-ci-next", "test": "bin/config-check.js && better-npm-run jest --watch", "test-debug": "bin/config-check.js && better-npm-run jest-debug --watch", "test-coverage": "bin/config-check.js && better-npm-run jest --coverage --watch", "test-coverage-once": "bin/config-check.js && better-npm-run jest --coverage", "test-once": "bin/config-check.js && better-npm-run jest && npm run lint", "version-check": "bin/version-check.js", "webpack-dev-server": "npm run build-locales && better-npm-run webpack-dev-server", "prepare": "husky install", "check-fonts": "./bin/regenerate_font.js src/fonts/woff2/Inter-roman.var.woff2 && ./bin/regenerate_font.js src/fonts/woff2/Inter-roman-subset-en_de_fr_ru_es_pt_pl_it.var.woff2 && git diff --quiet HEAD src/fonts/ || (echo '\n\n Did you manually alter font files that should be generated automatically ? See docs/fonts.md for details. This check found the following differences:\n\n' && git --no-pager diff src/fonts && exit 1)" }, "betterScripts": { "build": { "command": "npm run build-check && npm run version-check && npm run build-locales && webpack --progress --color --config webpack.prod.config.babel.js", "env": { "NODE_ICU_DATA": "./node_modules/full-icu", "NODE_PATH": "./:./src" } }, "build:blog-utils": { "command": "webpack --config webpack.blog-utils.config.babel.js", "env": { "NODE_ICU_DATA": "./node_modules/full-icu", "NODE_PATH": "./:./src", "NODE_CONFIG_ENV": "prod" } }, "amo:olympia": { "command": "better-npm-run start-dev-proxy", "env": { "NODE_APP_INSTANCE": "local", "WEBPACK_SERVER_HOST": "olympia.test" } }, "amo:dev": { "command": "better-npm-run start-dev-proxy", "env": { "PROXY_API_HOST": "https://addons-dev.allizom.org" } }, "amo:dev-https": { "command": "better-npm-run amo:dev", "env": { "API_HOST": "https://example.com:3000", "SERVER_HOST": "example.com", "USE_HTTPS_FOR_DEV": "true", "WEBPACK_SERVER_HOST": "example.com" } }, "amo:stage": { "command": "better-npm-run start-dev-proxy", "env": { "PROXY_API_HOST": "https://addons.allizom.org", "FXA_CONFIG": "local", "CSP": false } }, "extract-locales": { "command": "webpack --progress --color --config webpack.l10n.config.babel.js", "env": { "NODE_ENV": "production", "NODE_ICU_DATA": "./node_modules/full-icu", "NODE_PATH": "./:./src" } }, "start-dev": { "command": "npm run clean && concurrently 'npm run webpack-dev-server' 'nodemon bin/server.js | pino-devtools --mode buffer --tee | pino-pretty'", "env": { "NODE_ENV": "development", "NODE_ICU_DATA": "./node_modules/full-icu", "NODE_PATH": "./:./src" } }, "start-dev-proxy": { "command": "npm run clean && concurrently -c 'dim' 'npm run webpack-dev-server' 'nodemon bin/server.js | pino-devtools --mode buffer --tee | pino-pretty' 'node bin/proxy.js | pino-pretty'", "env": { "NODE_ENV": "development", "NODE_ICU_DATA": "./node_modules/full-icu", "NODE_PATH": "./:./src" } }, "node": { "command": "node", "env": { "NODE_ICU_DATA": "./node_modules/full-icu", "NODE_PATH": "./:./src" } }, "jest": { "command": "jest", "env": { "NODE_ICU_DATA": "./node_modules/full-icu" } }, "jest-debug": { "command": "jest", "env": { "NODE_ICU_DATA": "./node_modules/full-icu", "TEST_DEBUG": "FULL" } }, "test-ci": { "command": "npm run version-check && npm run flow:check && bin/config-check.js && better-npm-run jest --maxWorkers=2 --color=false --coverage", "env": { "NODE_ICU_DATA": "./node_modules/full-icu", "NODE_PATH": "./:./src", "NODE_ENV": "test", "NO_FLOW": "1", "NO_ESLINT": "1" } }, "test-ci-next": { "command": "npm run version-check && npm run flow:check && bin/config-check.js && better-npm-run jest --maxWorkers=2 --color=false --coverage", "env": { "NODE_ICU_DATA": "./node_modules/full-icu", "NODE_PATH": "./:./src", "NODE_ENV": "test", "NO_FLOW": "1", "NO_ESLINT": "1" } }, "webpack-dev-server": { "command": "node bin/webpack-dev-server.js", "env": { "NODE_ENV": "development", "NODE_ICU_DATA": "./node_modules/full-icu", "NODE_PATH": "./:./src" } } }, "repository": { "type": "git", "url": "git+https://github.com/mozilla/addons-frontend.git" }, "author": "Mozilla Add-ons Team", "license": "MPL-2.0", "bugs": { "url": "https://github.com/mozilla/addons-frontend/issues" }, "homepage": "https://github.com/mozilla/addons-frontend#readme", "dependencies": { "@mozilla-protocol/tokens": "5.0.5", "@reduxjs/toolkit": "1.8.5", "@willdurand/isomorphic-formdata": "2.1.0", "addons-moz-compare": "1.2.0", "base62": "2.0.1", "better-npm-run": "0.1.1", "chokidar": "3.5.3", "classnames": "2.3.2", "common-tags": "1.8.2", "compression": "1.7.4", "config": "3.3.8", "core-js": "3.25.4", "deep-eql": "4.1.1", "deepcopy": "2.1.0", "dompurify": "2.4.0", "express": "4.18.1", "express-http-context": "1.2.4", "filesize": "9.0.11", "focus-visible": "5.2.0", "fs-extra": "10.1.0", "full-icu": "1.5.0", "helmet": "6.0.0", "history": "4.10.1", "hot-shots": "9.2.0", "invariant": "2.2.4", "isomorphic-fetch": "3.0.0", "jed": "1.1.1", "join-url": "2.0.0", "jsdom": "20.0.1", "localforage": "1.10.0", "lodash.debounce": "4.0.8", "moment": "2.29.4", "nano-time": "1.0.0", "normalize.css": "8.0.1", "photon-colors": "3.3.2", "photoswipe": "4.1.3", "pino": "8.6.0", "pino-mozlog": "2.11.0", "prop-types": "15.8.1", "qhistory": "1.1.0", "qs": "6.11.0", "rc-tooltip": "5.2.2", "react": "18.2.0", "react-autosuggest": "10.1.0", "react-cookie": "4.1.1", "react-dom": "18.2.0", "react-helmet": "6.1.0", "react-keydown": "1.9.12", "react-nested-status": "0.2.1", "react-onclickoutside": "6.12.2", "react-photoswipe-gallery": "1.3.10", "react-redux": "8.0.4", "react-router": "5.3.3", "react-router-dom": "5.3.3", "react-super-responsive-table": "5.2.1", "react-textarea-autosize": "8.3.4", "react-transition-group": "4.4.5", "redux": "4.2.0", "redux-first-history": "5.0.12", "redux-logger": "3.0.6", "redux-saga": "0.16.2", "response-time": "2.3.2", "schema-utils": "4.0.0", "serialize-javascript": "6.0.0", "touch": "3.1.0", "ua-parser-js": "1.0.2", "universal-base64url": "1.1.0", "universal-cookie-express": "4.0.3", "url": "0.11.0", "uuid": "9.0.0", "web-vitals": "3.0.2", "webpack-isomorphic-tools": "4.0.0" }, "devDependencies": { "@babel/core": "^7.18.5", "@babel/eslint-parser": "^7.18.2", "@babel/preset-env": "^7.18.2", "@babel/preset-flow": "^7.17.12", "@babel/preset-react": "^7.17.12", "@babel/register": "^7.17.7", "@emotion/core": "^11.0.0", "@testing-library/jest-dom": "^5.16.2", "@testing-library/react": "^13.3.0", "@testing-library/user-event": "^14.2.6", "autoprefixer": "^10.2.4", "babel-gettext-extractor": "^4.1.3", "babel-loader": "^8.0.4", "babel-plugin-dynamic-import-node": "^2.2.0", "bundlewatch": "^0.3.3", "chalk": "^4.0.0", "characterset": "^2.0.0", "cheerio": "^1.0.0-rc.2", "chokidar-cli": "^3.0.0", "circular-dependency-plugin": "^5.0.0", "concurrently": "^7.0.0", "content-security-policy-parser": "^0.4.0", "cookie": "^0.5.0", "css-loader": "^6.0.0", "css-minimizer-webpack-plugin": "^4.0.0", "eslint": "^8.1.0", "eslint-config-amo": "^5.1.0", "eslint-plugin-amo": "^1.13.0", "eslint-plugin-promise": "^6.0.0", "eslint-plugin-react": "^7.30.0", "eslint-plugin-react-hooks": "^4.2.0", "eslint-plugin-testing-library": "^5.0.5", "file-loader": "^6.0.0", "flow-bin": "^0.187.0", "glob": "^8.0.0", "html-webpack-plugin": "5.5.0", "http-proxy": "^1.16.2", "husky": "^8.0.0", "intl": "^1.2.5", "intl-locales-supported": "^1.0.0", "jest": "^29.0.0", "jest-environment-jsdom": "^29.0.0", "jest-extended": "^3.0.0", "jest-watch-typeahead": "^2.0.0", "lint-staged": "^13.0.0", "mini-css-extract-plugin": "^2.0.0", "mock-express-request": "^0.2.0", "mock-express-response": "^0.3.0", "node-fetch": "^3.1.1", "node-sass": "^7.0.3", "nodemon": "^2.0.19", "pino-devtools": "^2.1.0", "pino-pretty": "^9.0.0", "po2json": "mikeedwards/po2json#51e2310485bbe35e9e57f2eee238185459ca0eab", "postcss": "^8.2.10", "postcss-loader": "^7.0.0", "prettier": "2.7.1", "pretty-quick": "3.1.3", "qrcode": "^1.4.4", "react-hot-loader": "^4.3.3", "redux-saga-tester": "^1.0.372", "rimraf": "^3.0.0", "sass-loader": "^13.0.0", "semver": "^7.0.0", "shelljs": "^0.8.0", "sinon": "^14.0.0", "style-loader": "^3.0.0", "stylelint": "^14.9.1", "stylelint-config-standard-scss": "^5.0.0", "supertest": "^6.0.0", "terser-webpack-plugin": "^4.0.0", "tmp": "^0.2.0", "tosource": "^1.0.0", "url-loader": "^4.1.1", "webpack": "^5.20.0", "webpack-cli": "^4.0.0", "webpack-dev-middleware": "^5.0.0", "webpack-hot-middleware": "^2.24.3", "webpack-subresource-integrity": "5.1.0" }, "bundlewatch": [ { "path": "./dist/static/amo-!(i18n-)*.js", "maxSize": "355 kB" }, { "path": "./dist/static/amo-i18n-*.js", "maxSize": "30 kB" }, { "path": "./dist/static/amo-*.css", "maxSize": "32 kB" } ] }