зеркало из https://github.com/mozilla/fxa.git
109 строки
3.2 KiB
JSON
109 строки
3.2 KiB
JSON
{
|
|
"name": "payments-next",
|
|
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "apps/payments/next",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@nx/next:build",
|
|
"outputs": ["{options.outputPath}"],
|
|
"defaultConfiguration": "production",
|
|
"options": {
|
|
"outputPath": "dist/apps/payments/next",
|
|
"postcssConfig": "apps/payments/next/postcss.config.js"
|
|
},
|
|
"dependsOn": ["l10n-bundle", "glean-generate"]
|
|
},
|
|
"dev": {
|
|
"options": {
|
|
"port": 3035
|
|
}
|
|
},
|
|
"export": {
|
|
"executor": "@nx/next:export",
|
|
"options": {
|
|
"buildTarget": "payments-next:build:production"
|
|
}
|
|
},
|
|
"test-unit": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
|
|
"options": {
|
|
"jestConfig": "apps/payments/next/jest.config.ts"
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/linter:eslint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["apps/payments/next/**/*.{ts,tsx,js,jsx}"]
|
|
},
|
|
"dependsOn": ["glean-lint"]
|
|
},
|
|
"start": {
|
|
"command": "pm2 start apps/payments/next/pm2.config.js && yarn check:url localhost:3035/__heartbeat__"
|
|
},
|
|
"stop": {
|
|
"command": "pm2 stop apps/payments/next/pm2.config.js"
|
|
},
|
|
"restart": {
|
|
"command": "pm2 restart apps/payments/next/pm2.config.js",
|
|
"dependsOn": [""]
|
|
},
|
|
"delete": {
|
|
"command": "pm2 delete apps/payments/next/pm2.config.js"
|
|
},
|
|
"l10n-merge": {
|
|
"dependsOn": ["l10n-convert"],
|
|
"command": "yarn grunt --gruntfile='apps/payments/next/Gruntfile.js' merge-ftl"
|
|
},
|
|
"l10n-prime": {
|
|
"command": "./_scripts/l10n/prime.sh apps/payments/next"
|
|
},
|
|
"l10n-bundle": {
|
|
"dependsOn": ["l10n-merge"],
|
|
"command": "./_scripts/l10n/bundle.sh apps/payments/next branding,react,payments"
|
|
},
|
|
"watchers": {
|
|
"command": "yarn grunt --gruntfile='apps/payments/next/Gruntfile.js' watchers"
|
|
},
|
|
"l10n-convert": {
|
|
"dependsOn": ["l10n-prime"],
|
|
"command": "node -r esbuild-register apps/payments/next/app/_lib/scripts/convert.ts"
|
|
},
|
|
"glean-generate": {
|
|
"dependsOn": ["glean-lint"],
|
|
"command": "yarn glean translate libs/shared/metrics/glean/src/registry/subplat-backend-metrics.yaml -f typescript_server -o libs/payments/metrics/src/lib/glean/__generated__"
|
|
},
|
|
"glean-lint": {
|
|
"command": "yarn glean glinter libs/shared/metrics/glean/src/registry/subplat-backend-metrics.yaml"
|
|
},
|
|
"storybook": {
|
|
"executor": "@nx/storybook:storybook",
|
|
"options": {
|
|
"port": 4400,
|
|
"configDir": "apps/payments/next/.storybook"
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"quiet": true
|
|
}
|
|
}
|
|
},
|
|
"build-storybook": {
|
|
"executor": "@nx/storybook:build",
|
|
"outputs": ["{options.outputDir}"],
|
|
"options": {
|
|
"outputDir": "dist/storybook/payments-next",
|
|
"configDir": "apps/payments/next/.storybook"
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"quiet": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"tags": ["app", "payments", "type:sp3"]
|
|
}
|