-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.18 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
{
"name": "lightcycle",
"version": "0.2.0",
"description": "TypeScript + Webpack 2 + React + Redux + HotReload Boilerplate",
"main": "index.js",
"scripts": {
"start": "node webpack/server",
"build": "webpack --config webpack/webpack.config.js",
"stats": "webpack --config webpack/webpack.config.js --profile --json > stats.json"
},
"keywords": [
"typescript",
"immutable",
"react",
"redux",
"webpack",
"hotreload"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/immutable": "^3.8.4",
"@types/react": "^0.14.47",
"@types/react-dom": "^0.14.17",
"@types/react-redux": "^4.4.32",
"@types/react-router": "^2.0.37",
"@types/react-router-redux": "^4.0.34",
"@types/redux": "^3.6.31",
"@types/redux-devtools": "^3.0.34",
"@types/redux-devtools-dock-monitor": "^1.1.29",
"@types/redux-devtools-log-monitor": "^1.0.29",
"@types/redux-logger": "^2.6.32",
"@types/redux-thunk": "^2.1.31",
"@types/webpack": "^2.0.0",
"@types/webpack-env": "^1.12.1",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"clean-webpack-plugin": "^0.1.14",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"node-sass": "^3.11.3",
"purifycss-webpack-plugin": "^2.0.3",
"react-hot-loader": "^3.0.0-beta.6",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.1.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"ts-loader": "^1.2.0",
"typescript": "2.2.0-dev.20161116",
"url-loader": "^0.5.7",
"webpack": "2.1.0-beta.27",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^0.17.0"
},
"dependencies": {
"monolite": "^0.1.2",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"redux": "^3.5.2",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.1.0",
"when-switch": "^0.1.1"
}
}