-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 2.87 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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
{
"name": "react-starter",
"config": {
"appname": "my-app-name"
},
"version": "5.0.1",
"description": "lightweight react starterkit with webpack, redux, react-router",
"scripts": {
"build": "BABEL_ENV=production webpack --config webpack/webpack.config.prod.js --colors",
"start": "webpack-dev-server --config webpack/webpack.config.dev.js"
},
"repository": {
"url": "[email protected]:wbkd/react-starter.git",
"type": "git"
},
"author": "webkid.io",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-styled-components": "^1.5.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.3.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-react-app": "^2.1.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-loader": "^2.0.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.9.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"idx": "^1.5.0",
"object-assign": "^4.1.1",
"postcss-loader": "^2.1.5",
"promise": "^7.3.1",
"style-loader": "^0.18.2",
"webpack": "^4.11.0",
"webpack-cli": "^2.1.5",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2",
"whatwg-fetch": "^2.0.4"
},
"dependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-spinners": "^0.3.2",
"react-wordcloud": "^1.1.0",
"styled-components": "^3.3.2",
"styled-normalize": "^4.0.0",
"unfetch": "^3.0.0"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
],
"plugins": [
[
"transform-runtime",
{
"helpers": false,
"polyfill": false,
"regenerator": true,
"moduleName": "babel-runtime"
}
],
"babel-plugin-styled-components"
],
"env": {
"production": {
"presets": [
"minify"
],
"plugins": [
[
"babel-plugin-styled-components",
{
"displayName": false
}
]
]
}
}
}
}