-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.14 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
{
"name": "postgres-explain-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/colors": "^7.0.0",
"@ant-design/icons": "^5.1.4",
"@cloudscape-design/components": "^3.0.334",
"@cloudscape-design/global-styles": "^1.0.11",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.0",
"@mui/x-date-pickers": "^6.15.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/plotly.js": "^2.12.27",
"@types/react-highlight": "^0.12.5",
"@types/react-plotly.js": "^2.6.0",
"apexcharts": "^3.41.1",
"dayjs": "^1.11.10",
"formik": "^2.4.2",
"just-clone": "^6.2.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"nanoid": "^4.0.2",
"plotly.js": "^2.26.0",
"plotly.js-cartesian-dist-min": "^2.26.1",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-highlight": "^0.15.0",
"react-json-view": "^1.21.3",
"react-plotly.js": "^2.6.0",
"react-router-dom": "^6.14.1",
"reactflow": "^11.7.4",
"store2": "^2.14.2",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "chmod +x ./env.sh && ./env.sh && cp env-config.js ./public/ && react-scripts start",
"ci": "npm run build",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"wasm": "(cd wasm && go mod tidy && GOOS=js GOARCH=wasm go build -o ../public/main.wasm main.go) && cd postgres-explain && make generate-types"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"react-scripts": "5.0.1"
},
"overrides": {
"react-json-view": {
"react": "$react",
"react-dom": "$react-dom"
}
}
}