forked from jackielii/simplest-redux-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.36 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
48
49
50
51
52
53
54
55
56
{
"name": "simplest-redux-example",
"version": "0.0.0",
"description": "simplest redux + react example",
"main": "index.js",
"scripts": {
"start": "browserify --debug --extension=js -o bundle.js index.js && http-server -p 8000"
},
"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": {
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"prop-types": "^15.5.10",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-polyfill": "^6.26.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"http-server": "^0.9.0",
"superagent": "3.8.1"
}
}