-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.77 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
124
125
126
127
128
129
{
"name": "deepchecks-mon",
"version": "0.1.0",
"private": true,
"homepage": "http://deepchecks.github.io/",
"dependencies": {
"@datadog/browser-rum": "^5.19.0",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/icons-material": "^5.10.3",
"@mui/lab": "^5.0.0-alpha.99",
"@mui/material": "^5.10.1",
"@mui/x-date-pickers": "^5.0.0-beta.7",
"@stripe/react-stripe-js": "^1.16.5",
"@stripe/stripe-js": "^1.47.0",
"@tanstack/react-query": "^4.2.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"axios": "^0.27.2",
"change-case": "^4.1.2",
"chart.js": "^3.9.1",
"chartjs-adapter-dayjs-3": "^1.2.3",
"chartjs-plugin-zoom": "^1.2.1",
"dayjs": "^1.11.5",
"deepmerge": "^4.2.2",
"file-saver": "^2.0.5",
"lodash": "^4.17.21",
"mixpanel-browser": "^2.45.0",
"overlayscrollbars": "^2.1.0",
"pino": "^8.10.0",
"plotly.js": "^2.16.3",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"react-date-range": "^1.4.0",
"react-dom": "^18.2.0",
"react-hotjar": "^5.1.0",
"react-plotly.js": "^2.6.0",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "^15.5.0",
"styled-components": "^5.3.6",
"web-vitals": "^2.1.0",
"yup": "^0.32.11"
},
"scripts": {
"dev": "env-cmd -f .env.development concurrently yarn:codegen yarn:start",
"start": "HTTPS=true react-scripts start",
"build": "react-scripts build && compress-cra",
"test": "react-scripts test",
"eject": "react-scripts eject",
"codegen": "env-cmd -f .env.development nodemon --exec orval",
"lint": "eslint . --fix",
"format": "npx prettier --write .",
"tsc": "node_modules/typescript/bin/tsc",
"precommit": "lint-staged",
"update-ds": "rm -rf src/components/lib && git clone --branch lib https://github.com/deepchecks/deepchecks-design-system.git src/components/lib"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,scss,json}": [
"npx prettier --write .",
"git add"
]
},
"devDependencies": {
"@jest/globals": "^29.4.2",
"@types/file-saver": "^2.0.5",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.185",
"@types/mixpanel-browser": "^2.38.0",
"@types/node": "^16.7.13",
"@types/overlayscrollbars": "^1.12.1",
"@types/react": "^18.0.0",
"@types/react-date-range": "^1.4.4",
"@types/react-dom": "^18.0.0",
"@types/react-plotly.js": "^2.5.2",
"@types/react-query": "^1.2.9",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"babel-plugin-named-exports-order": "^0.0.2",
"compress-create-react-app": "^1.3.1",
"concurrently": "^7.3.0",
"env-cmd": "^10.1.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"license-checker": "^25.0.1",
"lint-staged": "^13.1.1",
"nodemon": "^2.0.19",
"orval": "^6.9.6",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"typescript": "^4.7.4",
"webpack": "^5.75.0"
}
}