forked from chrisrzhou/egghead-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "egghead-redux",
"version": "1.0.0",
"description": "egghead redux tutorial",
"main": "app.js",
"scripts": {
"watch": "watchify src/*.js -t babelify --outfile bundle.js",
"build": "browserify src/*.js -t babelify --outfile bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisrzhou/egghead-redux.git"
},
"keywords": [
"egghead",
"redux",
"tutorial"
],
"author": "chrisrzhou",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisrzhou/egghead-redux/issues"
},
"homepage": "https://github.com/chrisrzhou/egghead-redux#readme",
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"deep-freeze": "0.0.1",
"expect": "^1.13.4"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
]
},
"dependencies": {
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-redux": "^4.0.6",
"redux": "^3.0.5"
}
}