-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.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
{
"name": "react-starter-17",
"version": "0.0.1",
"description": "React Starter 17",
"main": "server.js",
"author": "Travis Rich <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/isTravis/react-starter-17.git"
},
"scripts": {
"build": "rm -rf dist && webpack --config webpack/webpackConfigProd.js && cp -R static/* dist && cp _redirects-prod dist/_redirects",
"prod": "npm run build && serve ./dist -s",
"lint": "eslint app webpack",
"start": "webpack-dev-server --config webpack/webpackConfigDev.js"
},
"dependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.24.1",
"node-sass": "^4.5.2",
"normalize.css": "^7.0.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-code-splitting": "^1.1.1",
"react-dom": "^15.5.4",
"react-g-analytics": "^0.4.2",
"react-helmet": "^5.0.3",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.5.2",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.5",
"serve": "^6.0.3",
"style-loader": "^0.18.2",
"sw-precache-webpack-plugin": "^0.11.0",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.4.5"
},
"engines": {
"node": "8.2.1"
}
}