package.json 2.98 KB
Newer Older
Ville Immonen's avatar
Ville Immonen committed
1
2
{
  "name": "react-scripts",
Ville Immonen's avatar
Publish    
Ville Immonen committed
3
  "version": "0.7.0",
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
  ],
  "bin": {
    "react-scripts": "./bin/react-scripts.js"
  },
  "dependencies": {
Ville Immonen's avatar
Ville Immonen committed
26
27
28
    "autoprefixer": "6.5.1",
    "babel-core": "6.17.0",
    "babel-eslint": "7.0.0",
Chase Colman's avatar
Chase Colman committed
29
    "babel-jest": "16.0.0",
30
    "babel-loader": "6.2.7",
Ville Immonen's avatar
Publish    
Ville Immonen committed
31
    "babel-preset-react-app": "^1.0.0",
Ville Immonen's avatar
Ville Immonen committed
32
33
34
    "case-sensitive-paths-webpack-plugin": "1.1.4",
    "chalk": "1.1.3",
    "connect-history-api-fallback": "1.3.0",
Ville Immonen's avatar
Ville Immonen committed
35
36
37
    "cross-spawn": "4.0.2",
    "css-loader": "0.25.0",
    "detect-port": "1.0.1",
38
    "dotenv": "2.0.0",
Ville Immonen's avatar
Ville Immonen committed
39
    "eslint": "3.8.1",
Ville Immonen's avatar
Publish    
Ville Immonen committed
40
    "eslint-config-react-app": "^0.3.0",
Ville Immonen's avatar
Ville Immonen committed
41
42
43
44
45
    "eslint-loader": "1.6.0",
    "eslint-plugin-flowtype": "2.21.0",
    "eslint-plugin-import": "2.0.1",
    "eslint-plugin-jsx-a11y": "2.2.3",
    "eslint-plugin-react": "6.4.1",
Ville Immonen's avatar
Ville Immonen committed
46
47
48
49
50
    "extract-text-webpack-plugin": "1.0.1",
    "file-loader": "0.9.0",
    "filesize": "3.3.0",
    "fs-extra": "0.30.0",
    "gzip-size": "3.0.0",
Ville Immonen's avatar
Ville Immonen committed
51
52
53
    "html-webpack-plugin": "2.24.0",
    "http-proxy-middleware": "0.17.2",
    "jest": "16.0.2",
Ville Immonen's avatar
Ville Immonen committed
54
55
    "json-loader": "0.5.4",
    "object-assign": "4.1.0",
56
    "path-exists": "2.1.0",
Ville Immonen's avatar
Ville Immonen committed
57
    "postcss-loader": "1.0.0",
Ville Immonen's avatar
Ville Immonen committed
58
    "promise": "7.1.1",
Ville Immonen's avatar
Publish    
Ville Immonen committed
59
    "react-dev-utils": "^0.3.0",
60
    "recursive-readdir": "2.1.0",
Ville Immonen's avatar
Ville Immonen committed
61
62
63
64
65
    "rimraf": "2.5.4",
    "strip-ansi": "3.0.1",
    "style-loader": "0.13.1",
    "url-loader": "0.5.7",
    "webpack": "1.13.2",
Ville Immonen's avatar
Ville Immonen committed
66
67
    "webpack-dev-server": "1.16.2",
    "webpack-manifest-plugin": "1.1.0",
Ville Immonen's avatar
Ville Immonen committed
68
69
70
71
72
73
74
75
76
    "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
77
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
  },
  "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",
Ville Immonen's avatar
Publish    
Ville Immonen committed
121
    "webpack-manifest-plugin",
Dan Abramov's avatar
Publish    
Dan Abramov committed
122
123
    "whatwg-fetch"
  ]
Ville Immonen's avatar
Ville Immonen committed
124
}