Files
flipper/desktop/doctor/package.json
Michel Weststrate 670be012b2 Kill Flow support
Summary:
* Removed Flow compilation step
* Removed all `flow` annotations
* Removed all FlowFixMe's
* Removed flow typings for Flipper
* Left flow transpilation (stripping) in babel, in case there is any external user using Flow in his plugin
* Left `eslint-plugin-flowtype` dependencies, as `eslint-config-fbjs` requires it

Reviewed By: passy

Differential Revision: D24755545

fbshipit-source-id: 9c0a7910657fd1cba88294e041bf2bfdf7b565bf
2020-11-09 08:24:28 -08:00

45 lines
1.1 KiB
JSON

{
"name": "flipper-doctor",
"version": "0.64.0",
"description": "Utility for checking for issues with a flipper installation",
"main": "lib/index.js",
"flipperBundlerEntry": "src",
"types": "lib/index.d.ts",
"license": "MIT",
"devDependencies": {
"@types/fb-watchman": "2.0.0",
"@types/jest": "^26",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"eslint": "^7.12.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.20.0",
"jest": "^26",
"prettier": "^2.0.0",
"ts-jest": "^26.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3"
},
"scripts": {
"reset": "rimraf lib *.tsbuildinfo",
"build": "tsc -b",
"prepack": "yarn reset && yarn build",
"run": "yarn run build && node lib/cli.js"
},
"files": [
"lib/**/*"
],
"keywords": [
"Flipper",
"Doctor"
],
"author": "Facebook, Inc",
"dependencies": {
"@types/node": "^14.14.6",
"envinfo": "^7.5.1",
"fb-watchman": "^2.0.1"
}
}