package.json 2.16 KB
Newer Older
Ville Immonen's avatar
Ville Immonen committed
1
2
{
  "name": "react-scripts",
Joe Haddad's avatar
Publish    
Joe Haddad committed
3
  "version": "2.0.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.1.0",
    "@babel/runtime": "7.0.0",
26
    "@svgr/webpack": "2.4.1",
Clement Hoang's avatar
Clement Hoang committed
27
    "babel-core": "7.0.0-bridge.0",
28
    "babel-eslint": "9.0.0",
29
    "babel-jest": "23.6.0",
30
    "babel-loader": "8.0.2",
Joe Haddad's avatar
Publish    
Joe Haddad committed
31
32
    "babel-plugin-named-asset-import": "^0.2.0",
    "babel-preset-react-app": "^4.0.0",
33
    "bfj": "6.1.1",
34
35
    "case-sensitive-paths-webpack-plugin": "2.1.2",
    "chalk": "2.4.1",
Joe Haddad's avatar
Joe Haddad committed
36
    "css-loader": "1.0.0",
37
    "dotenv": "6.0.0",
38
    "dotenv-expand": "4.2.0",
39
    "eslint": "5.6.0",
Joe Haddad's avatar
Publish    
Joe Haddad committed
40
    "eslint-config-react-app": "^3.0.0",
41
    "eslint-loader": "2.1.1",
42
43
44
45
    "eslint-plugin-flowtype": "2.50.1",
    "eslint-plugin-import": "2.14.0",
    "eslint-plugin-jsx-a11y": "6.1.1",
    "eslint-plugin-react": "7.11.1",
Joe Haddad's avatar
Joe Haddad committed
46
    "file-loader": "2.0.0",
47
    "fs-extra": "7.0.0",
48
    "html-webpack-plugin": "4.0.0-alpha.2",
49
    "identity-obj-proxy": "3.0.0",
50
51
52
53
54
    "jest": "23.6.0",
    "mini-css-extract-plugin": "0.4.3",
    "optimize-css-assets-webpack-plugin": "5.0.1",
    "postcss-flexbugs-fixes": "4.1.0",
    "postcss-loader": "3.0.0",
55
    "postcss-preset-env": "6.0.6",
56
    "postcss-safe-parser": "4.0.1",
Joe Haddad's avatar
Publish    
Joe Haddad committed
57
58
    "react-app-polyfill": "^0.1.0",
    "react-dev-utils": "^6.0.0",
59
60
61
    "resolve": "1.8.1",
    "sass-loader": "7.1.0",
    "style-loader": "0.23.0",
62
    "sw-precache-webpack-plugin": "0.11.5",
63
    "terser-webpack-plugin": "1.1.0",
64
    "thread-loader": "1.2.0",
65
66
    "url-loader": "1.1.1",
    "webpack": "4.19.1",
Joe Haddad's avatar
Joe Haddad committed
67
    "webpack-dev-server": "3.1.9",
68
    "webpack-manifest-plugin": "2.0.4"
Ville Immonen's avatar
Ville Immonen committed
69
70
  },
  "devDependencies": {
71
72
    "react": "^16.3.2",
    "react-dom": "^16.3.2"
Ville Immonen's avatar
Ville Immonen committed
73
74
  },
  "optionalDependencies": {
75
    "fsevents": "1.2.4"
76
  },
77
  "browserslist": [
78
79
80
81
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
82
  ]
Ville Immonen's avatar
Ville Immonen committed
83
}