Files
flipper/desktop/flipper-server/package.json
Pascal Hartig fd23a9d626 Clean up socket on exit
Summary: Be more aggressive in cleaning up after ourselves. Using a tiny library by Sindre that handles standard exit events, SIGTERM and SIGINT.

Reviewed By: aigoncharov

Differential Revision: D35281772

fbshipit-source-id: a789f90f172b3aa3e187739cf2b7fefa75405891
2022-03-31 08:57:13 -07:00

52 lines
1.3 KiB
JSON

{
"name": "flipper-server",
"private": true,
"version": "0.0.0",
"description": "Standalone nodeJS based Flipper server",
"repository": "facebook/flipper",
"main": "server.js",
"bin": "server.js",
"license": "MIT",
"bugs": "https://github.com/facebook/flipper/issues",
"dependenciesComment": "mac-ca is required dynamically for darwin, node-fetch is treated special in electron-requires, not sure why",
"dependencies": {
"exit-hook": "^2.1.1",
"http-proxy": "^1.18.1",
"mac-ca": "^1.0.6",
"node-fetch": "^2.6.7",
"ws": "^8.5.0",
"xdg-basedir": "^4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/http-proxy": "^1.17.8",
"@types/node": "^15.12.5",
"chalk": "^4.1.2",
"express": "^4.17.3",
"flipper-common": "0.0.0",
"flipper-pkg-lib": "0.0.0",
"flipper-server-core": "0.0.0",
"fs-extra": "^9.0.0",
"metro": "^0.69.1",
"open": "^8.3.0",
"p-filter": "^2.1.0",
"yargs": "^17.0.1"
},
"peerDependencies": {},
"scripts": {
"reset": "rimraf lib *.tsbuildinfo",
"build": "tsc -b"
},
"files": [
"dist/**/*",
"static/**/*",
"README.md",
"server.js"
],
"homepage": "https://github.com/facebook/flipper",
"keywords": [
"Flipper"
],
"author": "Facebook, Inc"
}