-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.05 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
{
"name": "leaguealytics",
"version": "0.1.0",
"description": "",
"scripts": {
"start": "nodemon --watch \"./\" --ext \"ts,tsx,json\" --exec \"ts-node\" server/server.ts",
"client": "webpack --config ./webpack.config.js --progress",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch --verbose",
"heroku-postinstall": "webpack --env prod"
},
"dependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/plugin-transform-template-literals": "^7.4.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@reduxjs/toolkit": "^1.5.0",
"axios": "^0.21.1",
"axios-rate-limit": "^1.3.0",
"babel-loader": "^8.0.6",
"classnames": "^2.3.1",
"clean-webpack-plugin": "^3.0.0",
"d3": "^6.7.0",
"dotenv": "^8.0.0",
"eslint-plugin-prettier": "^3.1.0",
"express": "^4.17.1",
"express-history-api-fallback": "^2.2.1",
"firebase": "^8.1.2",
"formik": "^2.2.6",
"html-webpack-plugin": "^4.5.0",
"nodemon": "^1.19.1",
"path": "^0.12.7",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.2",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-toastify": "^7.0.4",
"styled-components": "^5.2.1",
"ts-loader": "^8.0.12",
"ts-node": "^9.1.1",
"typescript": "^4.1.2",
"victory": "^35.4.12",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"yup": "^0.32.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^11.2.2",
"@types/d3": "^6.7.0",
"@types/express": "^4.17.9",
"@types/faker": "^5.5.0",
"@types/jest": "^26.0.19",
"@types/material-ui": "^0.21.8",
"@types/node": "^14.14.37",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.7",
"@types/victory": "^33.1.4",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-import": "^0.13.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"faker": "^5.5.2",
"firebase-admin": "^9.6.0",
"firestore-jest-mock": "^0.10.0",
"husky": "^3.0.1",
"is-ci-cli": "^2.1.2",
"jest": "^26.6.3",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"ts-jest": "^26.4.4"
}
}