Files
firefox-accounts-mirror/packages/fxa-dev-launcher/package.json
dschom d96797ae6a task(CI): Improve nx caching for CI pipelines
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
2023-08-29 11:19:54 -07:00

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"
}
}