-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "react-simple-universal",
"version": "0.4.2",
"description": "Creating universal apps with Redux and React is too hard. I want to make it easier. In this document I'll propose an API to create modern universal apps.",
"main": "dist/index.js",
"files": [
"dist",
"src",
"server.js",
"client.js"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src examples",
"check:src": "npm run lint",
"build": "babel src --out-dir dist",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/guidsen/react-simple-universal.git"
},
"keywords": [
"redux",
"react-router",
"react",
"universal",
"isomorphic",
"server"
],
"author": "Guido Schmitz <hello@guidoschmitz.co> (https://github.com/guidsen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/guidsen/react-simple-universal/issues"
},
"homepage": "https://github.com/guidsen/react-simple-universal#readme",
"devDependencies": {
"babel-cli": "6.6.5",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"cross-env": "1.0.7",
"eslint": "2.4.0",
"eslint-config-airbnb": "6.2.0",
"eslint-plugin-react": "4.2.3",
"react-hot-loader": "1.3.0",
"rimraf": "2.5.2"
},
"dependencies": {
"express": "4.13.4",
"react": "0.14.7",
"react-dom": "0.14.7",
"react-redux": "4.4.1",
"react-router": "2.0.1",
"react-router-redux": "4.0.0",
"redux": "3.3.1",
"redux-logger": "2.6.1",
"redux-thunk": "2.0.1",
"webpack": "1.12.14",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.10.0"
}
}