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": {
|
2019-04-24 10:13:34 +03:00
|
|
|
"authors": "git shortlog -s | cut -c8- | sort -f > AUTHORS",
|
2014-12-17 06:25:58 +03:00
|
|
|
"postinstall": "_scripts/postinstall.sh",
|
2014-12-30 08:57:38 +03:00
|
|
|
"update": "./pm2 kill && _scripts/update_all.sh",
|
2016-09-26 22:08:20 +03:00
|
|
|
"start": "fxa-dev-launcher",
|
2016-09-28 01:52:39 +03:00
|
|
|
"start-android": "node _scripts/start-android.js",
|
2019-03-30 04:22:03 +03:00
|
|
|
"test": "lerna run test",
|
2019-06-25 20:47:56 +03:00
|
|
|
"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",
|
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-05-07 18:02:40 +03:00
|
|
|
"adr-log": "^2.1.1",
|
2015-10-03 01:56:56 +03:00
|
|
|
"chalk": "1.1.1",
|
2019-03-30 04:22:03 +03:00
|
|
|
"diffparser": "^2.0.1",
|
2019-06-26 22:48:32 +03:00
|
|
|
"fxa-dev-launcher": "github:vladikoff/fxa-dev-launcher",
|
2019-06-25 20:47:56 +03:00
|
|
|
"husky": "^2.5.0",
|
2016-09-28 01:52:39 +03:00
|
|
|
"internal-ip": "1.2.0",
|
2019-07-11 13:20:29 +03:00
|
|
|
"lerna": "^3.15.0",
|
2019-06-25 20:47:56 +03:00
|
|
|
"lint-staged": "^8.2.1",
|
2019-05-07 18:02:40 +03:00
|
|
|
"madr": "^2.1.2",
|
2019-03-30 04:22:03 +03:00
|
|
|
"node-fetch": "^2.3.0",
|
|
|
|
"pm2": "^3.4.1",
|
2019-06-25 20:47:56 +03:00
|
|
|
"prettier": "^1.18.2",
|
2018-02-14 23:49:14 +03:00
|
|
|
"replace-in-file": "0.2.1"
|
2019-03-30 04:22:03 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=10",
|
|
|
|
"npm": ">=6.4.1"
|
|
|
|
},
|
|
|
|
"fxa": {
|
|
|
|
"moduleDependencies": {
|
|
|
|
"fxa-content-server": [
|
|
|
|
"fxa-auth-server",
|
|
|
|
"fxa-js-client",
|
|
|
|
"fxa-shared",
|
|
|
|
"fxa-profile-server",
|
|
|
|
"fxa-oauth-server"
|
|
|
|
],
|
|
|
|
"fxa-auth-server": [
|
|
|
|
"fxa-auth-db-mysql",
|
|
|
|
"fxa-shared"
|
|
|
|
],
|
|
|
|
"fxa-js-client": [
|
|
|
|
"fxa-auth-server"
|
|
|
|
],
|
|
|
|
"fxa-profile-server": [
|
|
|
|
"fxa-auth-server"
|
|
|
|
]
|
2019-03-13 17:20:45 +03:00
|
|
|
}
|
2019-06-25 20:47:56 +03:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.js": [
|
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
],
|
|
|
|
"*.css": [
|
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
],
|
|
|
|
"*.md": [
|
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
]
|
2019-03-30 04:22:03 +03:00
|
|
|
}
|
2014-11-05 04:38:23 +03:00
|
|
|
}
|