fxa/package.json

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

2014-11-05 04:38:23 +03:00
{
2019-03-30 04:22:03 +03:00
"name": "fxa",
"version": "2.0.0",
"description": "Firefox Accounts monorepo",
2014-11-05 04:38:23 +03:00
"scripts": {
"authors": "git shortlog -s | cut -c8- | sort -f > AUTHORS",
"postinstall": "_scripts/install_all.sh",
"npm-ci-all": "lerna exec --parallel --ignore fxa-amplitude-send -- npm ci",
"audit": "lerna run audit --parallel",
"start": "_scripts/check_ports.sh && pm2 start mysql_servers.json && echo \"Use 'npm stop' to stop all the servers\"",
"stop": "pm2 kill",
"firefox": "./packages/fxa-dev-launcher/bin/fxa-dev-launcher",
"start-firefox": "npm run firefox",
"adb-reverse": "./_scripts/adb-reverse.sh",
2019-03-30 04:22:03 +03:00
"test": "lerna run test",
"config-fxios": "node _scripts/config-fxios.js",
"format": "lerna run format"
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.3",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"node-fetch": "^2.6.0",
"pm2": "^4.2.3",
"prettier": "^1.19.1",
"replace-in-file": "^5.0.2"
2019-03-30 04:22:03 +03:00
},
"engines": {
"node": ">=12",
2019-03-30 04:22:03 +03:00
"npm": ">=6.4.1"
},
"fxa": {
"moduleDependencies": {
"fxa-content-server": [
"123done",
"fortress",
2019-03-30 04:22:03 +03:00
"fxa-auth-server",
"fxa-js-client",
"fxa-shared",
"fxa-profile-server",
"fxa-oauth-server",
"fxa-payments-server"
2019-03-30 04:22:03 +03:00
],
"fxa-auth-server": [
"fxa-auth-db-mysql",
"fxa-shared"
],
"fxa-js-client": [
"fxa-auth-server"
],
"fxa-profile-server": [
"fxa-auth-server",
"fxa-shared"
2019-03-30 04:22:03 +03:00
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run audit"
}
},
"lint-staged": {
"*.js": [
"eslint -c .eslintrc",
"prettier --write"
],
2019-10-02 19:23:15 +03:00
"*.{ts,tsx}": [
"prettier --write"
],
"*.css": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-fxa": "^2.0.2",
"eslint-plugin-jest": "^23.8.2"
2019-03-30 04:22:03 +03:00
}
2014-11-05 04:38:23 +03:00
}