package.json 2.41 KB
Newer Older
Ville Immonen's avatar
Ville Immonen committed
1
2
{
  "name": "react-scripts",
Dan's avatar
Publish    
Dan committed
3
  "version": "1.1.0",
Ville Immonen's avatar
Ville Immonen committed
4
  "description": "Configuration and scripts for Create React App.",
5
  "repository": "facebook/create-react-app",
Sophie Alpert's avatar
Sophie Alpert committed
6
  "license": "MIT",
Ville Immonen's avatar
Ville Immonen committed
7
  "engines": {
8
    "node": ">=6"
Ville Immonen's avatar
Ville Immonen committed
9
10
  },
  "bugs": {
11
    "url": "https://github.com/facebook/create-react-app/issues"
Ville Immonen's avatar
Ville Immonen committed
12
13
14
15
16
  },
  "files": [
    "bin",
    "config",
    "scripts",
17
18
    "template",
    "utils"
Ville Immonen's avatar
Ville Immonen committed
19
20
21
22
23
  ],
  "bin": {
    "react-scripts": "./bin/react-scripts.js"
  },
  "dependencies": {
24
25
    "@babel/core": "7.0.0-beta.46",
    "@babel/runtime": "7.0.0-beta.46",
26
    "autoprefixer": "8.5.0",
Clement Hoang's avatar
Clement Hoang committed
27
    "babel-core": "7.0.0-bridge.0",
28
29
    "babel-eslint": "8.2.3",
    "babel-jest": "22.4.3",
Clement Hoang's avatar
Clement Hoang committed
30
    "babel-loader": "8.0.0-beta.0",
31
    "babel-plugin-named-asset-import": "^0.1.0",
Dan's avatar
Publish    
Dan committed
32
    "babel-preset-react-app": "^3.1.1",
33
34
35
36
    "case-sensitive-paths-webpack-plugin": "2.1.2",
    "chalk": "2.4.1",
    "css-loader": "0.28.11",
    "dotenv": "5.0.1",
37
    "dotenv-expand": "4.2.0",
38
    "eslint": "4.19.1",
Dan's avatar
Publish    
Dan committed
39
    "eslint-config-react-app": "^2.1.0",
40
41
42
    "eslint-loader": "2.0.0",
    "eslint-plugin-flowtype": "2.46.3",
    "eslint-plugin-import": "2.11.0",
Dan Abramov's avatar
Dan Abramov committed
43
    "eslint-plugin-jsx-a11y": "6.0.3",
44
45
    "eslint-plugin-react": "7.8.2",
    "file-loader": "1.1.11",
Dan Abramov's avatar
Dan Abramov committed
46
    "fs-extra": "5.0.0",
47
48
49
    "graphql": "0.13.2",
    "graphql-tag": "2.9.2",
    "html-webpack-plugin": "3.2.0",
50
    "identity-obj-proxy": "3.0.0",
51
    "loader-utils": "^1.1.0",
52
53
    "jest": "22.4.3",
    "mini-css-extract-plugin": "^0.4.0",
Joe Haddad's avatar
Joe Haddad committed
54
    "object-assign": "4.1.1",
55
56
57
    "postcss-flexbugs-fixes": "3.3.1",
    "optimize-css-assets-webpack-plugin": "^4.0.1",
    "postcss-loader": "2.1.5",
themre's avatar
themre committed
58
    "promise": "8.0.1",
59
    "raf": "3.4.0",
Dan's avatar
Publish    
Dan committed
60
    "react-dev-utils": "^5.0.0",
61
    "resolve": "1.6.0",
62
    "sass-loader": "7.0.1",
63
    "style-loader": "0.21.0",
Ian Sutherland's avatar
Ian Sutherland committed
64
    "svgr": "1.9.2",
65
66
67
68
69
70
    "sw-precache-webpack-plugin": "0.11.5",
    "thread-loader": "1.1.5",
    "uglifyjs-webpack-plugin": "1.2.5",
    "url-loader": "1.0.1",
    "webpack": "4.8.3",
    "webpack-dev-server": "3.1.4",
71
    "webpack-manifest-plugin": "2.0.3",
72
    "whatwg-fetch": "2.0.4"
Ville Immonen's avatar
Ville Immonen committed
73
74
  },
  "devDependencies": {
75
76
    "react": "^16.3.2",
    "react-dom": "^16.3.2"
Ville Immonen's avatar
Ville Immonen committed
77
78
  },
  "optionalDependencies": {
79
    "fsevents": "1.2.0"
80
81
  },
  "browserslist": {
82
83
84
85
86
87
88
89
90
91
92
    "development": [
      "last 2 chrome versions",
      "last 2 firefox versions",
      "last 2 edge versions"
    ],
    "production": [
      ">1%",
      "last 4 versions",
      "Firefox ESR",
      "not ie < 11"
    ]
93
  }
Ville Immonen's avatar
Ville Immonen committed
94
}