mirror of
https://github.com/mozilla/fxa.git
synced 2025-12-13 20:36:41 +01:00
Because: - Not all CI operations where taking advantage of NX caches This Commit: - Adjusts nx.json config to ensure correct caching behavior - Adjusts nx.json config to ensure proper target chains. ie build is dependent on pre-build - Uses nx to directly run integration tests - Uses nx to directly run unit tests - Phases out dependency on generated .list files - Ensures 'start up' for services for functional tests is done with nx and uses nx caches. - Creates nx tags to facilitate test commands - Fixes linter errors encountered - Updates docker images to nx for builds - Updates nx ignore files
27 lines
646 B
JSON
27 lines
646 B
JSON
{
|
|
"name": "fxa-dev-launcher",
|
|
"version": "0.0.0",
|
|
"description": "",
|
|
"scripts": {
|
|
"lint": "eslint . --ext .mjs",
|
|
"start": "./bin/fxa-dev-launcher.mjs",
|
|
"format": "prettier --write --config ../../_dev/.prettierrc '**'"
|
|
},
|
|
"bin": "./bin/fxa-dev-launcher.mjs",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/vladikoff/fxa-dev-launcher"
|
|
},
|
|
"author": "Mozilla (https://mozilla.org/)",
|
|
"license": "MPL-2.0",
|
|
"dependencies": {
|
|
"chalk": "^5.2.0",
|
|
"foxfire": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/eslint": "^8",
|
|
"eslint": "^8.38.0",
|
|
"eslint-config-react-app": "^7.0.1"
|
|
}
|
|
}
|