-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "mono-web-example",
"private": true,
"scripts": {
"flow:all": "flow check",
"flow:core": "flow check core",
"flow:web": "flow check web",
"lint": "eslint --ext .js,.jsx --ignore-pattern '**/node_modules/*' --ignore-pattern '*.min.js' --ignore-pattern '/dist/' --ignore-pattern '*.prod.js'",
"lint:all": "yarn lint ./core ./web",
"lint:core": "yarn lint ./core",
"lint:web": "yarn lint ./web"
},
"workspaces": [
"core",
"web"
],
"devDependencies": {
"babel-eslint": "10.0.1",
"eslint": "5.8.0",
"eslint-config-airbnb": "17.1.0",
"eslint-import-resolver-webpack": "0.10.1",
"eslint-plugin-flowtype": "3.2.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"flow-bin": "0.85.0",
"flow-typed": "2.5.1"
},
"dependencies": {
"ramda": "0.25.0",
"redux": "4.0.1",
"redux-resource": "3.0.4",
"redux-resource-action-creators": "2.0.1",
"redux-resource-plugins": "3.1.0",
"redux-saga": "0.16.2",
"reselect": "4.0.0"
}
}