-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.46 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
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
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "weather-widget",
"version": "0.0.1",
"description": "Weather widget technical test for Fairfax Media",
"main": "index.js",
"author": "Matt Gresham",
"license": "WTFPL",
"eslintConfig": {
"globals": {
"APP_CONFIG": false
},
"extends": [
"react-app",
"airbnb",
"plugin:prettier/recommended",
"prettier/flowtype",
"prettier/react",
"prettier/standard",
"plugin:flowtype/recommended"
],
"plugins": [
"flow",
"prettier"
],
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.test.js",
"**/*.spec.js",
"**/*.stories.js",
"./src/setupTests.js"
]
}
],
"prettier/prettier": [
"error",
{
"singleQuote": true,
"parser": "flow"
}
],
"react/jsx-filename-extension": 0,
"react/destructuring-assignment": 0
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"check-lint": "eslint src/**/*",
"check-flow": "flow check",
"start": "HTTPS=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"react-scripts": "2.1.1",
"redux": "^4.0.1",
"redux-saga": "^0.16.2",
"source-map-explorer": "^1.6.0"
},
"devDependencies": {
"@babel/core": "^7.1.5",
"@storybook/addon-actions": "^4.0.4",
"@storybook/addon-knobs": "^4.0.7",
"@storybook/addon-links": "^4.0.4",
"@storybook/addons": "^4.0.4",
"@storybook/react": "^4.0.4",
"babel-loader": "^8.0.4",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flow": "^2.29.1",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.86.0",
"prettier": "^1.15.2"
}
}