Files
flipper/desktop/babel-transformer/package.json
Michel Weststrate bf7599e574 Bumped some deps to fix parsing of template literal types
Summary:
I want to use TypesScipt type literals in a next diff (e.g.

```
type Percentage = `${number}%`
```

But to be able to use that typescript, prettier and eslint needed bumps :)

Reviewed By: nikoant

Differential Revision: D26321133

fbshipit-source-id: a4891246ef8c654f324c6daf303c5c4b2f54496e
2021-02-10 02:52:22 -08:00

56 lines
1.6 KiB
JSON

{
"name": "flipper-babel-transformer",
"version": "0.0.0",
"description": "Babel transformer for Flipper plugins",
"repository": "facebook/flipper",
"main": "lib/index.js",
"flipperBundlerEntry": "src",
"types": "lib/index.d.ts",
"license": "MIT",
"bugs": "https://github.com/facebook/flipper/issues",
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/parser": "^7.12.11",
"@babel/generator": "^7.12.11",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-flow-strip-types": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/traverse": "^7.12.12",
"@babel/types": "^7.12.10",
"@emotion/babel-plugin": "^11.0.0",
"@types/fs-extra": "^9.0.1",
"@types/node": "^14.14.10",
"fs-extra": "^9.0.1",
"tslib": "^2"
},
"devDependencies": {
"@types/jest": "26",
"jest": "^26",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"ts-node": "^8",
"typescript": "^4.1.2"
},
"scripts": {
"reset": "rimraf lib *.tsbuildinfo",
"build": "tsc -b",
"prepack": "yarn reset && yarn build"
},
"files": [
"lib/**/*",
"src/**/*"
],
"homepage": "https://github.com/facebook/flipper",
"keywords": [
"Flipper"
],
"author": "Facebook, Inc"
}