-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.88 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
{
"name": "isomorphic-react-redux-starter-kit",
"version": "0.0.1",
"description": "Starter kit for isomorphic React and Redux application.",
"main": "app.js",
"scripts": {
"pretest": "npm install",
"eslint": "eslint *.js",
"test": "npm run eslint",
"start": "npm test && nodemon app.js --dev & webpack-dev-server --progress --hot",
"build": "npm test && webpack --progress",
"postbuild": "babel-node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jostw/isomorphic-react-redux-starter-kit.git"
},
"keywords": [
"isomorphic",
"react",
"redux",
"react-router",
"immutable",
"babel",
"webpack"
],
"author": "jos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jostw/isomorphic-react-redux-starter-kit/issues"
},
"homepage": "https://github.com/jostw/isomorphic-react-redux-starter-kit#readme",
"dependencies": {
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"normalize.css": "^4.1.1",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-cli": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"browser-sync": "^2.13.0",
"css-loader": "^0.23.1",
"eslint": "^2.13.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^5.2.2",
"express": "^4.13.4",
"nodemon": "^1.9.2",
"postcss-loader": "^0.9.1",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
}
}