Files
cypress/packages/runner/package.json
Bill Glesias f14a11aecf chore: update eslint from version 7 to version 8 (#29355)
* chore: (for eslint-plugin-dev only is breaking) update eslint-plugin dev minimum to eslint 7. Remove support for coffeescript and reconfigured required peer deps

* correctly configure eslint-plugin-json-format for the monorepo and run linting on all json files (previously was not running)

* properly support no duplicate imports
2024-04-26 14:42:33 -04:00

36 lines
1.0 KiB
JSON

{
"name": "@packages/runner",
"version": "0.0.0-development",
"private": true,
"browser": "src/index.js",
"scripts": {
"prebuild": "rimraf ./dist",
"build": "node ../../scripts/run-webpack",
"build-prod": "cross-env NODE_ENV=production yarn build",
"clean-deps": "rimraf node_modules",
"cypress:open": "echo \"These tests have been moved to @packages/app. \" && exit 1",
"cypress:run": "echo \"These tests have been moved to @packages/app. \" && exit 1",
"postinstall": "echo '@packages/runner needs: yarn build'",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
"watch": "node ../../scripts/run-webpack --watch --progress"
},
"devDependencies": {
"babel-plugin-prismjs": "1.0.2",
"bluebird": "3.5.3",
"cross-env": "6.0.3",
"rimraf": "^5.0.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"files": [
"dist"
],
"nx": {
"implicitDependencies": [
"@packages/driver",
"@packages/reporter",
"@packages/config"
]
}
}