-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.29 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.29 KB
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
{
"name": "01cloud",
"version": "0.1.0",
"jest": {
"coverageReporters": [
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
},
"coveragePathIgnorePatterns": [
"<rootDir>/src/redux",
"<rootDir>/src/services",
"<rootDir>/src/theme"
]
},
"private": true,
"dependencies": {
"@auth0/auth0-react": "^2.3.0",
"@babel/helper-call-delegate": "^7.8.7",
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/free-solid-svg-icons": "^5.12.1",
"@fortawesome/react-fontawesome": "^0.1.8",
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/styles": "^4.9.6",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@uiw/react-md-editor": "^2.1.8",
"ansi-to-react": "^6.1.5",
"apexcharts": "^3.27.1",
"axios": "^0.19.2",
"axios-retry": "^3.1.8",
"chart.js": "^2.9.3",
"clsx": "^1.1.1",
"formik": "^2.1.4",
"glamor": "^2.20.40",
"i18next": "^19.3.3",
"i18next-browser-languagedetector": "^4.0.2",
"i18next-xhr-backend": "^3.2.2",
"jest-enzyme": "^7.1.2",
"material-ui-chip-input": "^1.1.0",
"mui-datatables": "^3.4.1",
"react": "^16.12.0",
"react-apexcharts": "1.3.9",
"react-chartjs-2": "^2.7.6",
"react-chartkick": "^0.4.0",
"react-clear-cache": "^1.4.12",
"react-dom": "^16.12.0",
"react-dropzone": "^11.2.4",
"react-html-parser": "^2.0.2",
"react-i18next": "^11.3.4",
"react-infinite-scroll-component": "^6.1.0",
"react-loading-skeleton": "^2.0.1",
"react-md": "^1.15.1",
"react-mde": "^11.0.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-router-redux": "^4.0.8",
"react-scripts": "3.4.0",
"react-simple-image-viewer": "0.0.8",
"react-toastify": "^5.5.0",
"react-toastr": "^3.0.0",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"showdown": "^1.9.1",
"styled-components": "^5.0.1",
"websocket": "^1.0.31",
"yup": "^0.28.3"
},
"scripts": {
"prebuild": "npm run generate-build-meta",
"generate-build-meta": "node ./node_modules/react-clear-cache/bin/cli.js",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint \"src/**/*.js\"",
"lint:fix": "eslint --fix \"src/**/*.js\"",
"test:coverage": "npm run test -- --coverage --watchAll=false"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1"
}
}