-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.3 KB
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
{
"name": "react-heroku-starter",
"version": "1.0.0",
"scripts": {
"start": "node server.js",
"dev": "webpack-dev-server --hot --history-api-fallback --open",
"postinstall": "webpack -p --config ./webpack-prod.config.js",
"lint": "eslint src"
},
"author": "Alex Vakarchuk <[email protected]> (http://github.com/alexeyvakarchuk)",
"dependencies": {
"@types/classnames": "^2.2.3",
"@types/immutable": "^3.8.7",
"@types/material-ui": "^0.20.0",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.31",
"@types/react-dom": "^16.0.3",
"@types/react-hot-loader": "^3.0.5",
"@types/react-redux": "^5.0.14",
"@types/react-router-dom": "^4.2.3",
"@types/reselect": "^2.2.0",
"@types/webpack-env": "^1.13.3",
"axios": "^0.17.1",
"babel-core": "^6.0.20",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"compression-webpack-plugin": "^1.0.1",
"css-loader": "^0.28.7",
"eslint-plugin-react": "^7.5.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^3.0.2",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.28.0",
"immutable": "^3.8.1",
"material-ui": "^0.20.0",
"node-sass": "^4.7.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.0.9",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"react-redux": "^5.0.5",
"react-router-dom": "^4.0.0",
"react-waypoint": "^7.3.1",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"resolve-url": "^0.2.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"typescript": "^2.6.2",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.2",
"webpack-dev-server": "^2.9.5",
"webpack-hot-middleware": "^2.21.0"
},
"devDependencies": {
"awesome-typescript-loader": "^3.4.1",
"eslint": "^4.12.0",
"eslint-plugin-react": "^7.2.0",
"ts-loader": "^3.2.0",
"tslib": "^1.8.1",
"tslint": "^5.8.0",
"tslint-react": "^3.2.0"
}
}