-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.63 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
{
"name": "monitoris-app",
"description": "Monitoris - Redis Monitoring Tool",
"author": "BL-IT",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "REACT_APP_GIT_COMMIT_HASH=$(git rev-parse --short HEAD) craco --max_old_space_size=4096 start",
"build": "REACT_APP_GIT_COMMIT_HASH=$(git rev-parse --short HEAD) craco --max_old_space_size=4096 build",
"build:amplify": "REACT_APP_GIT_COMMIT_HASH=$(git rev-parse --short HEAD) craco --max_old_space_size=4096 build",
"lint": "eslint src",
"test": "craco test",
"postinstall": "husky install"
},
"dependencies": {
"@antv/data-set": "^0.11.8",
"@craco/craco": "^6.4.3",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"antd": "^4.18.2",
"aws-amplify": "^4.3.11",
"axios": "^0.24.0",
"bizcharts": "^4.1.15",
"bluebird": "^3.7.2",
"craco-antd": "^1.19.0",
"inputmask-core": "^2.2.0",
"jquery": "^3.6.0",
"jquery.terminal": "^2.31.0",
"jspdf": "^2.5.0",
"jspdf-autotable": "^3.5.23",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mousetrap": "^1.6.5",
"qs": "^6.10.2",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dnd": "^14.0.4",
"react-dnd-html5-backend": "^14.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.4",
"react-joyride": "^2.3.2",
"react-redux": "^7.2.6",
"react-scripts": "4.0.3",
"react-split-pane": "^0.1.92",
"react-stripe-elements": "^6.1.2",
"react-syntax-highlighter": "^15.4.5",
"react-virtualized": "^9.22.3",
"reconnecting-websocket": "^4.4.0",
"reduce-reducers": "^1.0.4",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"reselect": "^4.1.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.4.5",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"react-test-renderer": "^17.0.2",
"typescript": "^4.5.4"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}