-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.19 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
{
"name": "react-redux-tiny",
"version": "0.1.0",
"description": "A and exemple and oilerplate for running a Webpack React Universal app with redux and redux-tiny-router",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=hot node ./boot.js",
"start2": "npm run webpack & npm run serve",
"webpack": "node_modules/.bin/webpack -w",
"serve": "NODE_ENV=hot node_modules/.bin/nodemon -q boot.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"author": "Guilherme Guerchmann",
"license": "MIT",
"dependencies": {
"autoprefixer-loader": "^2.0.0",
"babel-core": "^5.6.15",
"babel-loader": "^5.3.1",
"babel-runtime": "^5.8.20",
"body-parser": "^1.13.2",
"classnames": "^2.1.3",
"compression": "^1.5.2",
"css-loader": "^0.10.1",
"ejs": "^2.3.3",
"express": "^4.12.3",
"express-session": "^1.11.3",
"extract-text-webpack-plugin": "^0.8.2",
"http-hash": "^2.0.0",
"http-proxy": "^1.11.2",
"jsonfile": "^2.2.1",
"lodash": "^3.10.0",
"multer": "^0.1.8",
"node-http-proxy": "^0.2.3",
"node-libs-browser": "^0.5.2",
"node-sass": "^3.2.0",
"query-string": "^2.4.0",
"react": "^0.13.3",
"react-redux": "^2.1.1",
"redux": "^2.0.0",
"redux-devtools": "^2.1.0",
"redux-promise": "^0.5.0",
"redux-thunk": "^0.1.0",
"redux-tiny-router": "^0.4.6",
"rimraf": "^2.4.1",
"rmdir": "^1.1.0",
"sass-loader": "^1.0.2",
"serialize-javascript": "^1.0.0",
"source-map-support": "^0.3.2",
"style-loader": "^0.10.2",
"superagent": "^1.3.0",
"underscore": "^1.8.3",
"webpack": "^1.11.0"
},
"devDependencies": {
"babel": "*",
"babel-plugin-react-hotify": "^0.1.1",
"core-js": "^0.9.18",
"http-hash": "^2.0.0",
"install": "^0.1.8",
"jasmine-core": "^2.3.4",
"karma": "^0.12.37",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.0",
"karma-jasmine": "^0.3.6",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.5.1",
"nodemon": "^1.4.1",
"react-hot-loader": "^1.2.9",
"react-hotify": "^0.1.1",
"webpack-dev-server": "^1.8.0"
}
}