-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.86 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
{
"name": "meadstats-frontend",
"version": "1.8.0",
"description": "Frontend for meadstats.com",
"repository": {
"type": "git",
"url": "https://github.com/boren/meadstats-frontend.git"
},
"bugs": {
"url": "https://github.com/boren/meadstats-frontend/issues",
"email": "[email protected]"
},
"license": "GPL-3.0-or-later",
"author": "Fredrik Bore <[email protected]> (https://www.bore.ai)",
"private": true,
"dependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@fortawesome/fontawesome-svg-core": "1.2.30",
"@fortawesome/free-regular-svg-icons": "5.14.0",
"@fortawesome/free-solid-svg-icons": "5.14.0",
"@fortawesome/react-fontawesome": "0.1.11",
"@types/chart.js": "^2.9.24",
"@types/jest": "26.0.13",
"@types/node": "16.7.1",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@types/react-router-dom": "5.1.5",
"@types/react-simple-maps": "0.12.2",
"@types/reactstrap": "8.5.1",
"@types/topojson-specification": "1.0.1",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"axios": "0.20.0",
"bootstrap": "4.5.2",
"chart.js": "2.9.3",
"chartjs-chart-box-and-violin-plot": "2.3.0",
"chartjs-chart-matrix": "^0.1.3",
"d3-scale": "3.2.2",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"history": "5.0.0",
"husky": "4.3.0",
"jwt-decode": "2.2.0",
"moment": "2.28.0",
"popper.js": "1.16.1",
"prettier": "2.1.1",
"react": "16.13.1",
"react-bootstrap-table-next": "4.0.3",
"react-cookie": "4.0.3",
"react-dom": "16.13.1",
"react-flag-icon-css": "1.0.25",
"react-router-bootstrap": "0.25.0",
"react-router-dom": "^6.0.0-beta.0",
"react-scripts": "3.4.3",
"react-simple-maps": "0.12.1",
"react-spring": "8.0.27",
"react-tooltip": "4.2.9",
"react-use": "15.3.4",
"reactstrap": "8.6.0",
"socket.io-client": "2.3.0",
"source-map-explorer": "2.5.0",
"typescript": "3.9.7",
"use-interval": "1.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"analyze": "source-map-explorer build/static/js/*",
"lint": "eslint --ext js,ts,tsx src"
},
"eslintConfig": {
"extends": "react-app"
},
"bundlewatch": {
"files": [
{
"path": "build/static/js/*"
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}