-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.31 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.31 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "redux-flow-example",
"description": "Example of using FlowType to type Redux applications.",
"version": "1.0.0",
"main": "index.js",
"author": "Tom Dawes",
"repository": {
"type": "git",
"url": "https://github.com/prodo-ai/redux-flow-example.git"
},
"license": "MIT",
"scripts": {
"eslint": "scripts/eslint",
"eslint:fix": "scripts/eslint --fix",
"eslint:watch": "scripts/eslint --watch",
"flow": "scripts/flow",
"flow:watch": "scripts/flow --watch",
"postinstall": "scripts/postinstall",
"start": "scripts/start",
"test": "scripts/test",
"test:watch": "scripts/test --watch"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"redux": "^3.6.0",
"redux-ui": "^0.0.15",
"reselect": "^3.0.0"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"babel-traverse": "^6.24.1",
"babel-watch": "^2.0.6",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-prettier": "^1.7.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-prodo": "git+ssh://git@github.com/prodo-ai/eslint-plugin-prodo.git#v0.0.2",
"eslint-plugin-react": "^6.10.3",
"eslint-watch": "^3.1.0",
"flow-bin": "^0.45.0",
"flow-typed": "^2.1.2",
"jsdom": "^9.12.0",
"jsdom-global": "^2.1.1",
"prettier": "^1.3.0",
"react-hot-loader": "^1.3.1",
"react-test-renderer": "^15.5.4",
"testdouble": "^2.1.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": [
"transform-async-generator-functions",
"transform-flow-strip-types"
]
},
"ava": {
"require": [
"babel-polyfill",
"babel-register"
],
"babel": "inherit"
}
}