forked from jackielii/simplest-redux-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 891 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
{
"name": "simplest-redux-example",
"version": "0.0.0",
"description": "simplest redux + react example",
"main": "index.js",
"scripts": {
"start": "watchify --extension=js -o bundle.js index.js & python -m SimpleHTTPServer"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackielii/simplest-redux-example.git"
},
"keywords": [
"redux",
"react"
],
"author": "Jackie Li",
"license": "ISC",
"bugs": {
"url": "https://github.com/jackielii/simplest-redux-example/issues"
},
"browserify": {
"transform": [
"babelify"
]
},
"homepage": "https://github.com/jackielii/simplest-redux-example#readme",
"dependencies": {
"react": "^0.13.3",
"react-redux": "^0.5.0",
"redux": "^1.0.0-rc"
},
"devDependencies": {
"browserify": "~10.2.4",
"babelify": "~6.1.2",
"watchify": "^3.3.1"
}
}