forked from alkemyTech/OT91-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.26 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.26 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
{
"name": "ong-proyect",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^30.0.0",
"@ckeditor/ckeditor5-react": "^3.0.2",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.1.0",
"@mui/material": "^5.1.0",
"@popperjs/core": "^2.10.1",
"@react-google-maps/api": "^2.7.0",
"@reduxjs/toolkit": "1.6.2",
"@testing-library/jest-dom": "5.11.4",
"@testing-library/user-event": "12.1.10",
"aos": "^2.3.4",
"axios": "0.24.0",
"ckeditor": "4.12.1",
"date-fns": "2.23.0",
"formik": "2.2.6",
"react": "17.0.2",
"react-awesome-reveal": "^3.8.1",
"react-dom": "17.0.2",
"react-dropzone": "^11.4.2",
"react-html-parser": "^2.0.2",
"react-loader-spinner": "^4.0.0",
"react-pdf": "^5.5.0",
"react-player": "^2.9.0",
"react-redux": "7.2.4",
"react-router-dom": "5.3.0",
"react-router-transition": "^2.1.0",
"react-scripts": "4.0.3",
"react-social-plugins": "^2.1.0",
"react-super-responsive-table": "^5.2.0",
"reactjs-popup": "^2.0.5",
"redux": "4.1.0",
"redux-persist": "6.0.0",
"redux-thunk": "2.3.0",
"sweetalert2": "^10.16.6",
"swiper": "6.8.4",
"web-vitals": "1.0.1"
},
"devDependencies": {
"@testing-library/react": "^12.1.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.5",
"prettier": "^2.0.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "npx eslint ./src",
"lint:ci": "npx eslint ./src --format json -o reports/eslint"
},
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:ci",
"pre-push": "yarn lint:ci"
}
}
}