-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
123 lines (123 loc) · 3.9 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
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "arena",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.7.3",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/pickers": "^3.3.10",
"@material/elevation": "^0.44.0",
"@material/react-button": "^0.9.2",
"@material/react-card": "^0.9.0",
"@material/react-dialog": "^0.15.0",
"@material/react-drawer": "^0.8.0",
"@material/react-fab": "^0.15.0",
"@material/react-icon-button": "^0.15.0",
"@material/react-layout-grid": "^0.8.0",
"@material/react-linear-progress": "^0.15.0",
"@material/react-list": "^0.9.0",
"@material/react-material-icon": "^0.9.0",
"@material/react-menu": "^0.14.1",
"@material/react-menu-surface": "^0.14.1",
"@material/react-notched-outline": "^0.12.0",
"@material/react-ripple": "^0.10.0",
"@material/react-select": "^0.12.1",
"@material/react-snackbar": "^0.15.0",
"@material/react-switch": "^0.14.1",
"@material/react-tab": "^0.15.0",
"@material/react-tab-bar": "^0.15.0",
"@material/react-tab-indicator": "^0.8.0",
"@material/react-text-field": "^0.15.0",
"@material/react-top-app-bar": "^0.12.1",
"@material/react-typography": "^0.8.0",
"@material/ripple": "^0.44.1",
"@material/top-app-bar": "^0.44.0",
"@sentry/browser": "^5.30.0",
"ace-builds": "^1.14.0",
"babel-polyfill": "^6.26.0",
"date-fns": "^2.29.3",
"express": "^4.18.2",
"graphql": "^14.7.0",
"highcharts": "^8.2.2",
"highcharts-react-official": "^3.1.0",
"highlight.js": "^10.7.3",
"json-loader": "^0.5.7",
"markdown-it": "^10.0.0",
"node-sass": "^4.13.1",
"prop-types": "^15.8.1",
"query-string": "^6.14.1",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-card": "^1.0.4",
"react-dom": "^18.2.0",
"react-download-link": "^2.3.0",
"react-google-charts": "^3.0.15",
"react-loading-skeleton": "^2.2.0",
"react-markdown-editor-lite": "^1.3.4",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"react-scripts": "^4.0.3",
"react-slick": "^0.26.1",
"react-social-icons": "^4.1.0",
"react-split": "^2.0.14",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.6",
"swagger-ui": "^4.15.5",
"swagger-ui-react": "^4.15.5",
"tachyons": "^4.11.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "run-script-os",
"test:win32:msys": "set CI=true react-scripts test --transformIgnorePatterns \"node_modules/(?!(react))/\"",
"test:darwin:linux": "CI=true react-scripts test --transformIgnorePatterns \"node_modules/(?!(react))/\"",
"test:default": "CI=true react-scripts test --transformIgnorePatterns \"node_modules/(?!(react))/\"",
"eject": "react-scripts eject",
"lint": "eslint \"**/*.{js,jsx}\"",
"lint-fix": "eslint --fix \"**/*.{js,jsx}\"",
"format": "npm run lint-fix && prettier --write \"**/*.+(json|css|md)\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test",
"pre-push": "npm run format && npm test"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix"
],
"*.+(json|css|md)": [
"prettier --write"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^3.0.9",
"lint-staged": "^10.5.4",
"prettier": "^2.8.1",
"run-script-os": "^1.1.6"
},
"engines": {
"node": "12.22.2",
"npm": "6.14.16"
}
}