package.json 2.98 KB
Newer Older
Ville Immonen's avatar
Ville Immonen committed
1
2
{
  "name": "react-scripts",
Dan Abramov's avatar
Publish    
Dan Abramov committed
3
  "version": "0.6.1",
Ville Immonen's avatar
Ville Immonen committed
4
5
6
7
8
9
10
11
12
13
  "description": "Configuration and scripts for Create React App.",
  "repository": "facebookincubator/create-react-app",
  "license": "BSD-3-Clause",
  "engines": {
    "node": ">=4"
  },
  "bugs": {
    "url": "https://github.com/facebookincubator/create-react-app/issues"
  },
  "files": [
14
    ".babelrc",
15
    ".eslintrc",
Ville Immonen's avatar
Ville Immonen committed
16
17
18
    "bin",
    "config",
    "scripts",
19
20
    "template",
    "utils"
Ville Immonen's avatar
Ville Immonen committed
21
22
23
24
25
26
27
28
  ],
  "bin": {
    "react-scripts": "./bin/react-scripts.js"
  },
  "dependencies": {
    "autoprefixer": "6.4.1",
    "babel-core": "6.14.0",
    "babel-eslint": "6.1.2",
Chase Colman's avatar
Chase Colman committed
29
    "babel-jest": "16.0.0",
Ville Immonen's avatar
Ville Immonen committed
30
    "babel-loader": "6.2.5",
Dan Abramov's avatar
Publish    
Dan Abramov committed
31
    "babel-preset-react-app": "^0.2.1",
Ville Immonen's avatar
Ville Immonen committed
32
33
34
35
36
37
    "case-sensitive-paths-webpack-plugin": "1.1.4",
    "chalk": "1.1.3",
    "connect-history-api-fallback": "1.3.0",
    "cross-spawn": "4.0.0",
    "css-loader": "0.24.0",
    "detect-port": "1.0.0",
38
    "dotenv": "2.0.0",
Ville Immonen's avatar
Ville Immonen committed
39
    "eslint": "3.5.0",
Dan Abramov's avatar
Publish    
Dan Abramov committed
40
    "eslint-config-react-app": "^0.2.1",
Ville Immonen's avatar
Ville Immonen committed
41
42
43
44
    "eslint-loader": "1.5.0",
    "eslint-plugin-flowtype": "2.18.1",
    "eslint-plugin-import": "1.12.0",
    "eslint-plugin-jsx-a11y": "2.2.2",
45
    "eslint-plugin-react": "6.3.0",
Ville Immonen's avatar
Ville Immonen committed
46
47
48
49
50
51
52
53
    "extract-text-webpack-plugin": "1.0.1",
    "file-loader": "0.9.0",
    "filesize": "3.3.0",
    "find-cache-dir": "0.1.1",
    "fs-extra": "0.30.0",
    "gzip-size": "3.0.0",
    "html-webpack-plugin": "2.22.0",
    "http-proxy-middleware": "0.17.1",
Chase Colman's avatar
Chase Colman committed
54
    "jest": "16.0.1",
Ville Immonen's avatar
Ville Immonen committed
55
56
    "json-loader": "0.5.4",
    "object-assign": "4.1.0",
57
    "path-exists": "2.1.0",
Ville Immonen's avatar
Ville Immonen committed
58
59
    "postcss-loader": "0.13.0",
    "promise": "7.1.1",
Dan Abramov's avatar
Publish    
Dan Abramov committed
60
    "react-dev-utils": "^0.2.1",
61
    "recursive-readdir": "2.1.0",
Ville Immonen's avatar
Ville Immonen committed
62
63
64
65
66
67
    "rimraf": "2.5.4",
    "strip-ansi": "3.0.1",
    "style-loader": "0.13.1",
    "url-loader": "0.5.7",
    "webpack": "1.13.2",
    "webpack-dev-server": "1.16.1",
68
    "webpack-manifest-plugin": "1.0.1",
Ville Immonen's avatar
Ville Immonen committed
69
70
71
72
73
74
75
76
77
    "whatwg-fetch": "1.0.0"
  },
  "devDependencies": {
    "bundle-deps": "1.0.0",
    "react": "^15.3.0",
    "react-dom": "^15.3.0"
  },
  "optionalDependencies": {
    "fsevents": "1.0.14"
Dan Abramov's avatar
Publish    
Dan Abramov committed
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
  },
  "bundledDependencies": [
    "autoprefixer",
    "babel-core",
    "babel-eslint",
    "babel-jest",
    "babel-loader",
    "babel-preset-react-app",
    "case-sensitive-paths-webpack-plugin",
    "chalk",
    "connect-history-api-fallback",
    "cross-spawn",
    "css-loader",
    "detect-port",
    "dotenv",
    "eslint",
    "eslint-config-react-app",
    "eslint-loader",
    "eslint-plugin-flowtype",
    "eslint-plugin-import",
    "eslint-plugin-jsx-a11y",
    "eslint-plugin-react",
    "extract-text-webpack-plugin",
    "file-loader",
    "filesize",
    "find-cache-dir",
    "fs-extra",
    "gzip-size",
    "html-webpack-plugin",
    "http-proxy-middleware",
    "jest",
    "json-loader",
    "object-assign",
    "path-exists",
    "postcss-loader",
    "promise",
    "react-dev-utils",
    "recursive-readdir",
    "rimraf",
    "strip-ansi",
    "style-loader",
    "url-loader",
    "webpack",
    "webpack-dev-server",
    "whatwg-fetch"
  ]
Ville Immonen's avatar
Ville Immonen committed
124
}