-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "example-redux-saga",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "./node_modules/.bin/browserify src/index.js -t babelify --outfile bundle.js",
"watch": "./node_modules/.bin/nodemon --exec npm run build",
"start": "./node_modules/.bin/http-server"
},
"author": "Jack Hsu <[email protected]> (http://jaysoo.ca/)",
"license": "ISC",
"dependencies": {
"daggy": "0.0.1",
"data.either": "^1.3.0",
"data.maybe": "^1.2.1",
"moment": "^2.10.6",
"pointfree-fantasy": "^0.1.3",
"ramda": "^0.19.0",
"react": "^0.14.5",
"react-dom": "^0.14.5",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-saga": "^0.10.5",
"reselect": "^2.5.1"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"http-server": "^0.8.5",
"nodemon": "^1.8.1"
}
}