forked from flipace/lovli.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "lovli.js",
"version": "0.7.4",
"license": "MIT",
"description": "A boilerplate for developing react+redux applications with rethinkdb/horizon as realtime database and express for the server.",
"repository": "https://github.com/flipace/lovli.js",
"contributors": [
{
"name": "Patrick Neschkudla",
"email": "[email protected]"
}
],
"devDependencies": {
"async": "1.5.2",
"autoprefixer": "^6.3.6",
"babel-cli": "6.7.7",
"babel-core": "6.7.7",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-syntax-jsx": "6.5.0",
"babel-plugin-transform-class-properties": "6.6.0",
"babel-plugin-transform-runtime": "6.7.5",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"chalk": "^1.1.3",
"css-loader": "^0.23.1",
"css-mqpacker": "^4.0.1",
"eslint": "2.8.0",
"eslint-config-airbnb": "8.0.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"json-loader": "^0.5.4",
"postcss-discard-comments": "^2.0.4",
"postcss-loader": "^0.8.2",
"progress-bar-webpack-plugin": "^1.6.0",
"raw-loader": "^0.5.1",
"react-addons-perf": "15.0.1",
"react-hot-loader": "^3.0.0-beta.2",
"react-transform-catch-errors": "1.0.2",
"redbox-react": "1.2.3",
"redux-devtools": "3.2.0",
"script-loader": "^0.7.0",
"shelljs": "^0.7.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "1.13.0",
"webpack-anybar-plugin": "^2.1.0",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"@horizon/client": "1.0.3",
"@horizon/server": "1.0.3",
"bootstrap": "^3.3.6",
"exports-loader": "^0.6.3",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"font-awesome": "^4.6.3",
"horizon-react": "0.3.0",
"immutable": "3.8.1",
"imports-loader": "^0.6.5",
"later": "^1.2.0",
"lodash": "4.11.1",
"normalize.css": "^4.1.1",
"postcss-nested": "^1.0.0",
"react": "15.0.1",
"react-dom": "15.0.1",
"react-redux": "4.4.5",
"react-router": "2.4.0",
"react-router-redux": "^4.0.4",
"redux": "3.5.2",
"redux-thunk": "2.0.1",
"rethinkdbdash": "^2.3.4",
"winston": "^2.2.0"
},
"scripts": {
"start": "babel-node bin/dev.js",
"prod": "npm run build && node ./.build/server.bundle.js",
"build": "webpack --config=config/webpack/webpack.config.client.prod.js && webpack --config=config/webpack/webpack.config.server.js"
}
}