-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.55 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
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "pfa-ui",
"version": "0.1.0",
"description": "The pro-football-analytics web client and dashboard UI",
"author": "Sean Costello <[email protected]>",
"license": "ISC",
"scripts": {
"start": "NODE_ENV=\"development\" webpack-dev-server --colors --config ./webpack/webpack.config.js",
"test": "jest --coverage --no-cache",
"build": "NODE_ENV=production webpack --config ./webpack/webpack.config.js",
"lint": "eslint src -c .eslintrc --ext js,jsx",
"format": "prettier-eslint 'src/**/!(*.min).js' 'src/**/*.{js,jsx,less}' --write",
"flow-typed": "flow-typed"
},
"engines": {
"yarn": "^1.10",
"node": ">=8"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.8.2",
"@vx/gradient": "^0.0.189",
"antd": "^3.20.1",
"apollo-cache-inmemory": "^1.6.2",
"apollo-client": "^2.6.3",
"apollo-link": "^1.2.12",
"apollo-link-error": "^1.1.11",
"apollo-link-http": "^1.5.15",
"apollo-link-ws": "^1.0.18",
"apollo-utilities": "^1.3.2",
"d3-shape": "^1.3.5",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"history": "^4.9.0",
"mobx": "^5.11.0",
"mobx-react": "^6.1.1",
"mobx-state-tree": "^3.14.0",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-annotation": "^2.1.6",
"react-dom": "^16.8.6",
"react-error-boundary": "^1.2.5",
"react-loadable": "^5.5.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"rxjs": "^6.5.2",
"semiotic": "^1.19.11",
"subscriptions-transport-ws": "^0.9.16"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.4",
"@testing-library/jest-dom": "^4.0.0",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-ramda": "^2.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"core-js": "^3.1.4",
"css-loader": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-flowtype": "^3.11.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"file-loader": "^4.0.0",
"flow-bin": "^0.102.0",
"flow-typed": "^2.5.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.0",
"jest-cli": "^24.8.0",
"json-loader": "^0.5.7",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"lint-staged": "^9.2.0",
"mini-css-extract-plugin": "^0.7.0",
"mobx-devtools-mst": "^0.9.21",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0",
"raw-loader": "^3.0.0",
"regenerator-runtime": "^0.13.2",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"url-loader": "^2.0.1",
"webpack": "^4.35.3",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
}
}