fxa/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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

2014-11-05 04:38:23 +03:00
{
2019-03-30 04:22:03 +03:00
"name": "fxa",
"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": {
"preinstall": "_scripts/check-package-manager.sh",
"authors": "git shortlog -s | cut -c8- | sort -f > AUTHORS",
"audit": "echo 'audit is currently unavailable'",
"start": "nps --prefix=start",
"stop": "nps --prefix=stop",
"restart": "nps --prefix=restart",
"adb-reverse": "./_scripts/adb-reverse.sh",
"test": "_scripts/test-package.sh",
"config-fxios": "node _scripts/config-fxios.js",
"format": "yarn workspaces foreach run format",
"ports": "pm2 jlist | json -d'\\t' -a -c 'this.pm2_env.env.PORT' pm2_env.env.PORT name",
"heroku-postbuild": "yarn workspace 123done install"
2014-12-30 08:57:38 +03:00
},
2019-03-30 04:22:03 +03:00
"homepage": "https://github.com/mozilla/fxa",
"bugs": {
2019-03-30 04:22:03 +03:00
"url": "https://github.com/mozilla/fxa/issues"
},
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
},
"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",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
2020-10-15 19:41:53 +03:00
"node-fetch": "^2.6.1",
"nps": "^5.10.0",
2021-06-08 23:54:51 +03:00
"pm2": "^5.0.4",
2021-05-25 00:17:30 +03:00
"prettier": "^2.3.0",
"replace-in-file": "^6.1.0",
"semver": "^7.3.5"
2019-03-30 04:22:03 +03:00
},
"engines": {
"node": "^14.15.1"
2019-03-30 04:22:03 +03:00
},
"fxa": {
"moduleDependencies": {
"fxa-content-server": [
"123done",
"fortress",
2019-03-30 04:22:03 +03:00
"fxa-auth-server",
"fxa-auth-client",
2019-03-30 04:22:03 +03:00
"fxa-shared",
"fxa-profile-server",
"fxa-payments-server",
"fxa-settings"
2019-03-30 04:22:03 +03:00
],
"fxa-auth-server": [
"fxa-auth-db-mysql",
"fxa-shared"
],
"fxa-auth-client": [
2019-03-30 04:22:03 +03:00
"fxa-auth-server"
],
"fxa-event-broker": [
"fxa-shared"
],
2019-03-30 04:22:03 +03:00
"fxa-profile-server": [
"fxa-auth-server",
"fxa-shared"
],
"fxa-payments-server": [
"fxa-shared",
"fxa-react"
],
"fxa-settings": [
"fxa-shared",
"fxa-react",
"fxa-content-server"
2019-03-30 04:22:03 +03:00
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "_scripts/audit.sh",
"post-checkout": "_scripts/git-checkout-hook.sh",
"post-merge": "_scripts/git-merge-hook.sh"
}
},
"lint-staged": {
"*.js": [
"prettier --config _dev/.prettierrc --write",
"eslint -c _dev/.eslintrc"
],
2019-10-02 19:23:15 +03:00
"*.{ts,tsx}": [
"prettier --config _dev/.prettierrc --write"
],
"*.css": [
"prettier --config _dev/.prettierrc --write"
],
"*.scss": [
"stylelint --config _dev/.stylelintrc"
],
"*.md": [
"prettier --config _dev/.prettierrc --write"
]
},
"devDependencies": {
2021-05-25 00:17:30 +03:00
"eslint": "^7.27.0",
"eslint-plugin-fxa": "^2.0.2",
2021-05-25 00:17:30 +03:00
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-react": "^7.23.2",
2021-05-24 21:44:40 +03:00
"json": "^11.0.0",
2021-05-25 00:17:30 +03:00
"stylelint": "^13.13.1",
2020-06-27 01:29:53 +03:00
"stylelint-config-prettier": "^8.0.2"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"gobbledygook": "git://github.com/mozilla-fxa/gobbledygook.git#354042684056e57ca77f036989e907707a36cff2",
2021-05-06 21:51:38 +03:00
"tap/typescript": "^4.2.4",
"@nestjs/cli/typescript": "^4.2.4",
2020-10-15 19:41:53 +03:00
"@types/node": "^14.14.5",
"http-proxy": "^1.18.1",
"browserid-crypto": "git://github.com/mozilla-fxa/browserid-crypto.git#5979544d13eeb15a02d0b9a6a7a08a698d54d37d",
"fbjs/isomorphic-fetch": "^3.0.0"
2019-03-30 04:22:03 +03:00
}
2014-11-05 04:38:23 +03:00
}