forked from jackielii/simplest-redux-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "simplest-redux-example",
"version": "0.0.0",
"description": "simplest redux + react example",
"main": "index.js",
"scripts": {
"start": "watchify --debug --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", { "presets": ["es2015", "react"] } ]
]
},
"homepage": "https://github.com/jackielii/simplest-redux-example#readme",
"dependencies": {
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"watchify": "^3.7.0"
}
}