-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
39 lines (39 loc) · 1008 Bytes
/
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
{
"name": "counter-rx",
"version": "0.1.0",
"description": "Counter example for rx-redux",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --inline --colors",
"dev": "webpack-dev-server --config webpack.config.dev.js --inline --colors",
"build": "NODE_ENV=production webpack --display-modules --progress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jas-chen/rx-redux.git"
},
"keywords": [
"rx-redux",
"redux",
"reactive",
"rx",
"rxjs"
],
"author": "Jas Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/jas-chen/rx-redux/issues"
},
"homepage": "https://github.com/jas-chen/rx-redux#readme",
"devDependencies": {
"babel-core": "^5.8.3",
"babel-loader": "^5.3.2",
"webpack": "^1.10.3",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"rx-lite-joinpatterns": "^2.5.2",
"rx-redux": "^0.5.7"
}
}