-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 2.67 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
{
"name": "grpc-test-typescript",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@googlemaps/js-api-loader": "^1.16.2",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.15.18",
"@mui/x-data-grid": "^7.5.0",
"@react-google-maps/api": "^2.19.2",
"@reduxjs/toolkit": "^1.9.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.22",
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"ag-grid-community": "^29.2.0",
"ag-grid-react": "^29.2.0",
"assert": "^2.0.0",
"chart.js": "^4.3.2",
"d3": "^7.8.5",
"file-saver": "^2.0.5",
"js-yaml": "^4.1.0",
"nice-grpc-common": "^2.0.2",
"nice-grpc-web": "^3.3.0",
"protobufjs": "^7.2.4",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-bootstrap": "^2.7.4",
"react-chartjs-2": "^5.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.8",
"react-icons": "^4.10.1",
"react-redux": "^8.0.5",
"react-router-dom": "^6.9.0",
"react-scripts": "5.0.1",
"react-select": "^5.7.3",
"react-table": "^7.8.0",
"styled-components": "^6.0.7",
"typescript": "^4.9.5",
"util": "^0.12.5",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-query-devtools": "^4.28.0",
"@types/d3": "^7.4.0",
"@types/file-saver": "^2.0.5",
"@types/lodash": "^4.14.192",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-syntax-highlighter": "^15.5.6",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"antd": "^5.8.2",
"axios": "^1.3.4",
"concurrently": "^8.0.1",
"eslint": "^8.37.0",
"google-protobuf": "~3.14.0",
"grpc-web": "~1.4.2",
"json-server": "^0.17.3",
"lodash": "^4.17.21",
"prettier": "^2.8.7",
"process": "^0.11.10",
"sass": "^1.60.0"
},
"scripts": {
"start": " concurrently \"craco start --config craco.config.js\" \"json-server --watch ./src/_db/db.json\"",
"build": "craco build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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"
]
}
}