Summary: Plugins moved from "sonar/desktop/src/plugins" to "sonar/desktop/plugins". Fixed all the paths after moving. New "desktop" folder structure: - `src` - Flipper desktop app JS code executing in Electron Renderer (Chrome) process. - `static` - Flipper desktop app JS code executing in Electron Main (Node.js) process. - `plugins` - Flipper desktop JS plugins. - `pkg` - Flipper packaging lib and CLI tool. - `doctor` - Flipper diagnostics lib and CLI tool. - `scripts` - Build scripts for Flipper desktop app. - `headless` - Headless version of Flipper desktop app. - `headless-tests` - Integration tests running agains Flipper headless version. Reviewed By: mweststrate Differential Revision: D20344186 fbshipit-source-id: d020da970b2ea1e001f9061a8782bfeb54e31ba0
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "flipper-static",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@babel/core": "^7.8.3",
|
|
"@babel/generator": "^7.8.3",
|
|
"@babel/parser": "^7.8.3",
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
|
|
"@babel/plugin-transform-flow-strip-types": "^7.8.3",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
|
|
"@babel/plugin-transform-typescript": "^7.8.3",
|
|
"@babel/preset-react": "^7.8.3",
|
|
"electron-devtools-installer": "^2.2.4",
|
|
"expand-tilde": "^2.0.2",
|
|
"fb-watchman": "^2.0.0",
|
|
"fix-path": "^3.0.0",
|
|
"mem": "^6.0.0",
|
|
"metro": "^0.58.0",
|
|
"mkdirp": "^1.0.0",
|
|
"p-map": "^4.0.0",
|
|
"recursive-readdir": "2.2.2",
|
|
"uuid": "^7.0.1",
|
|
"xdg-basedir": "^4.0.0",
|
|
"yargs": "^15.0.1"
|
|
},
|
|
"resolutions": {
|
|
"metro/temp": "0.9.0",
|
|
"ws": "7.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.8.3",
|
|
"@types/electron-devtools-installer": "^2.2.0"
|
|
}
|
|
}
|