2014-11-05 04:38:23 +03:00
|
|
|
{
|
2019-03-30 04:22:03 +03:00
|
|
|
"name": "fxa",
|
2020-05-15 03:48:39 +03:00
|
|
|
"private": true,
|
2019-03-30 04:22:03 +03:00
|
|
|
"version": "2.0.0",
|
|
|
|
"description": "Firefox Accounts monorepo",
|
2014-11-05 04:38:23 +03:00
|
|
|
"scripts": {
|
2020-05-15 03:48:39 +03:00
|
|
|
"preinstall": "_scripts/check-package-manager.sh",
|
2019-04-24 10:13:34 +03:00
|
|
|
"authors": "git shortlog -s | cut -c8- | sort -f > AUTHORS",
|
2020-04-10 21:33:30 +03:00
|
|
|
"start": "nps --prefix=start",
|
|
|
|
"stop": "nps --prefix=stop",
|
|
|
|
"restart": "nps --prefix=restart",
|
2021-11-19 22:52:33 +03:00
|
|
|
"delete": "nps --prefix=delete",
|
2022-03-10 17:41:08 +03:00
|
|
|
"rebuild-packages": "yarn workspaces foreach run build",
|
2020-03-12 23:52:09 +03:00
|
|
|
"adb-reverse": "./_scripts/adb-reverse.sh",
|
2020-04-09 01:58:16 +03:00
|
|
|
"test": "_scripts/test-package.sh",
|
2019-06-25 20:47:56 +03:00
|
|
|
"config-fxios": "node _scripts/config-fxios.js",
|
2020-05-15 03:48:39 +03:00
|
|
|
"format": "yarn workspaces foreach run format",
|
2022-04-21 16:47:21 +03:00
|
|
|
"ports": "pm2 jlist | json -a -c 'this.pm2_env.env.PORT' pm2_env.env.PORT name",
|
2022-08-30 18:46:08 +03:00
|
|
|
"heroku-postbuild": "yarn workspaces foreach --verbose --include 123done install",
|
2022-09-01 18:57:08 +03:00
|
|
|
"mysql": "docker exec -it $(docker container ls | grep mysql | cut -d' ' -f1) mysql",
|
|
|
|
"firefox": "./packages/fxa-dev-launcher/bin/fxa-dev-launcher.mjs"
|
2014-12-30 08:57:38 +03:00
|
|
|
},
|
2019-03-30 04:22:03 +03:00
|
|
|
"homepage": "https://github.com/mozilla/fxa",
|
2015-06-08 03:35:33 +03:00
|
|
|
"bugs": {
|
2019-03-30 04:22:03 +03:00
|
|
|
"url": "https://github.com/mozilla/fxa/issues"
|
2015-06-08 03:35:33 +03:00
|
|
|
},
|
2014-12-30 08:57:38 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-03-30 04:22:03 +03:00
|
|
|
"url": "https://github.com/mozilla/fxa"
|
2014-11-05 04:38:23 +03:00
|
|
|
},
|
2015-06-08 03:35:33 +03:00
|
|
|
"author": "Mozilla (https://mozilla.org/)",
|
|
|
|
"license": "MPL-2.0",
|
2014-11-05 04:38:23 +03:00
|
|
|
"dependencies": {
|
2019-03-30 04:22:03 +03:00
|
|
|
"diffparser": "^2.0.1",
|
2020-08-22 03:06:03 +03:00
|
|
|
"husky": "^4.2.5",
|
2022-10-14 17:12:23 +03:00
|
|
|
"lint-staged": "^13.0.3",
|
2020-10-15 19:41:53 +03:00
|
|
|
"node-fetch": "^2.6.1",
|
2020-08-22 03:06:03 +03:00
|
|
|
"nps": "^5.10.0",
|
2022-10-26 19:10:38 +03:00
|
|
|
"pm2": "^5.2.2",
|
2021-06-09 00:03:22 +03:00
|
|
|
"prettier": "^2.3.1",
|
2022-10-27 18:46:30 +03:00
|
|
|
"replace-in-file": "^6.3.5",
|
2021-05-24 22:38:11 +03:00
|
|
|
"semver": "^7.3.5"
|
2019-03-30 04:22:03 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
2021-10-23 02:10:22 +03:00
|
|
|
"node": "^16.12.0"
|
2019-03-30 04:22:03 +03:00
|
|
|
},
|
2019-06-25 20:47:56 +03:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2019-11-19 22:47:55 +03:00
|
|
|
"pre-commit": "lint-staged",
|
2020-05-22 02:06:10 +03:00
|
|
|
"post-checkout": "_scripts/git-checkout-hook.sh",
|
|
|
|
"post-merge": "_scripts/git-merge-hook.sh"
|
2019-06-25 20:47:56 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.js": [
|
2020-05-30 00:53:35 +03:00
|
|
|
"prettier --config _dev/.prettierrc --write",
|
2022-11-01 23:17:53 +03:00
|
|
|
"eslint"
|
2019-06-25 20:47:56 +03:00
|
|
|
],
|
2019-10-02 19:23:15 +03:00
|
|
|
"*.{ts,tsx}": [
|
2020-03-12 23:52:09 +03:00
|
|
|
"prettier --config _dev/.prettierrc --write"
|
2019-08-16 09:12:35 +03:00
|
|
|
],
|
2022-11-01 23:17:53 +03:00
|
|
|
"packages/fxa-auth-server/**/*.{ts,tsx}": [
|
|
|
|
"eslint"
|
|
|
|
],
|
2019-06-25 20:47:56 +03:00
|
|
|
"*.css": [
|
2020-03-12 23:52:09 +03:00
|
|
|
"prettier --config _dev/.prettierrc --write"
|
2019-06-25 20:47:56 +03:00
|
|
|
],
|
2020-04-27 21:21:23 +03:00
|
|
|
"*.scss": [
|
2020-05-17 22:44:41 +03:00
|
|
|
"stylelint --config _dev/.stylelintrc"
|
2020-04-27 21:21:23 +03:00
|
|
|
],
|
2019-06-25 20:47:56 +03:00
|
|
|
"*.md": [
|
2020-03-12 23:52:09 +03:00
|
|
|
"prettier --config _dev/.prettierrc --write"
|
2019-06-25 20:47:56 +03:00
|
|
|
]
|
2019-10-31 20:50:59 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-07 01:38:39 +03:00
|
|
|
"eslint": "^7.32.0",
|
2020-03-12 23:52:09 +03:00
|
|
|
"eslint-plugin-fxa": "^2.0.2",
|
2022-10-28 09:37:48 +03:00
|
|
|
"eslint-plugin-jest": "^27.1.3",
|
2022-10-18 09:17:22 +03:00
|
|
|
"eslint-plugin-react": "^7.31.10",
|
2021-05-24 21:44:40 +03:00
|
|
|
"json": "^11.0.0",
|
2022-06-17 23:19:38 +03:00
|
|
|
"postcss": "^8.4.14",
|
2022-10-26 09:23:38 +03:00
|
|
|
"stylelint": "^14.14.0",
|
2022-10-12 09:23:29 +03:00
|
|
|
"stylelint-config-prettier": "^9.0.3",
|
2022-10-26 17:30:05 +03:00
|
|
|
"stylelint-config-recommended-scss": "^8.0.0"
|
2020-05-15 03:48:39 +03:00
|
|
|
},
|
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
|
|
|
"resolutions": {
|
2022-11-11 00:44:15 +03:00
|
|
|
"@grpc/grpc-js": "~1.6.0",
|
2021-11-19 10:25:28 +03:00
|
|
|
"@nestjs/cli/typescript": "^4.5.2",
|
2021-10-23 02:10:22 +03:00
|
|
|
"@types/node": "^16.11.3",
|
2022-01-11 20:21:56 +03:00
|
|
|
"browserid-crypto": "https://github.com/mozilla-fxa/browserid-crypto.git#5979544d13eeb15a02d0b9a6a7a08a698d54d37d",
|
2022-04-12 01:37:28 +03:00
|
|
|
"eslint-plugin-import": "^2.25.2",
|
2022-11-11 00:44:15 +03:00
|
|
|
"fbjs/isomorphic-fetch": "^3.0.0",
|
|
|
|
"gobbledygook": "https://github.com/mozilla-fxa/gobbledygook.git#354042684056e57ca77f036989e907707a36cff2",
|
2022-09-03 03:54:41 +03:00
|
|
|
"google-gax": "2.30.5",
|
2022-11-11 00:44:15 +03:00
|
|
|
"http-proxy": "^1.18.1",
|
|
|
|
"minimist": "^1.2.6",
|
|
|
|
"moment:>2.0.0 <3": ">=2.29.4",
|
2022-11-15 20:45:56 +03:00
|
|
|
"protobufjs:>6.0.0 <7": ">=6.11.3",
|
2022-11-11 00:44:15 +03:00
|
|
|
"tap/typescript": "^4.5.2",
|
2022-11-14 19:33:37 +03:00
|
|
|
"underscore": ">=1.13.2",
|
2022-11-11 00:44:15 +03:00
|
|
|
"url-parse": "^1.5.8"
|
2021-10-07 19:57:36 +03:00
|
|
|
},
|
2021-12-23 02:16:20 +03:00
|
|
|
"packageManager": "yarn@3.1.1"
|
2014-11-05 04:38:23 +03:00
|
|
|
}
|