package.json 1.33 KB
Newer Older
1
2
{
  "name": "babel-preset-react-app",
Ian Schmitz's avatar
Publish    
Ian Schmitz committed
3
  "version": "7.0.1",
4
  "description": "Babel preset used by Create React App",
5
  "repository": "facebook/create-react-app",
Sophie Alpert's avatar
Sophie Alpert committed
6
  "license": "MIT",
7
  "bugs": {
8
    "url": "https://github.com/facebook/create-react-app/issues"
9
10
  },
  "files": [
11
12
13
    "create.js",
    "dependencies.js",
    "dev.js",
14
    "index.js",
15
    "webpack-overrides.js",
16
17
    "prod.js",
    "test.js"
18
  ],
19
20
21
  "peerDependencies": {
    "@babel/core": "7.2.2"
  },
22
  "dependencies": {
Ian Schmitz's avatar
Ian Schmitz committed
23
24
25
    "@babel/plugin-proposal-class-properties": "7.3.0",
    "@babel/plugin-proposal-decorators": "7.3.0",
    "@babel/plugin-proposal-object-rest-spread": "7.3.2",
26
27
    "@babel/plugin-syntax-dynamic-import": "7.2.0",
    "@babel/plugin-transform-classes": "7.2.2",
Ian Schmitz's avatar
Ian Schmitz committed
28
    "@babel/plugin-transform-destructuring": "7.3.2",
29
30
31
32
    "@babel/plugin-transform-flow-strip-types": "7.2.3",
    "@babel/plugin-transform-react-constant-elements": "7.2.0",
    "@babel/plugin-transform-react-display-name": "7.2.0",
    "@babel/plugin-transform-runtime": "7.2.0",
Ian Schmitz's avatar
Ian Schmitz committed
33
    "@babel/preset-env": "7.3.1",
34
    "@babel/preset-react": "7.0.0",
35
    "@babel/preset-typescript": "7.1.0",
Ian Schmitz's avatar
Ian Schmitz committed
36
    "@babel/runtime": "7.3.1",
37
    "babel-loader": "8.0.5",
38
    "babel-plugin-dynamic-import-node": "2.2.0",
Ian Schmitz's avatar
Ian Schmitz committed
39
40
    "babel-plugin-macros": "2.5.0",
    "babel-plugin-transform-react-remove-prop-types": "0.4.24"
41
42
  }
}