This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.69 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
{
"name": "react-redux-router-example",
"version": "0.0.0",
"description": "Example application using react with redux and redux-router",
"repository": {
"type": "git",
"url": "https://github.com/ffossum/react-redux-router-example"
},
"license": "MIT",
"scripts": {
"prod": "webpack -p --config webpack.production.config.js",
"dev": "node devServer.js",
"lint": "eslint src",
"test": "mocha --recursive --compilers js:babel-core/register"
},
"dependencies": {
"express": "^4.13.3",
"jade": "^1.11.0",
"serve-favicon": "^2.3.0",
"socket.io": "^1.3.7"
},
"devDependencies": {
"babel-core": "^5.8.24",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"bootstrap": "^3.3.5",
"chai": "^3.4.0",
"classnames": "^2.2.0",
"css-loader": "^0.21.0",
"eslint": "^1.7.3",
"eslint-plugin-react": "^3.6.3",
"file-loader": "^0.8.4",
"history": "^1.12.5",
"immutable": "^3.7.5",
"mocha": "^2.3.3",
"node-sass": "^3.3.3",
"react": "^0.14.0",
"react-bootstrap": "^0.27.2",
"react-dom": "^0.14.0",
"react-redux": "^3.1.0",
"react-router": "1.0.0-rc3",
"react-router-bootstrap": "^0.19.2",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.1.1",
"redux": "^3.0.4",
"redux-devtools": "^2.1.4",
"redux-router": "^1.0.0-beta3",
"sass-loader": "^3.0.0",
"socket.io-client": "^1.3.7",
"style-loader": "^0.13.0",
"todomvc-app-css": "^2.0.1",
"url-loader": "^0.5.6",
"webpack": "^1.12.1",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
}
}