-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
92 lines (92 loc) · 2.54 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
{
"name": "event-board-web",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"start:dev": "REACT_APP_USE_MIRAGE=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "node_modules/.bin/eslint --ext js,jsx src",
"lint:fix": "node_modules/.bin/eslint --fix --ext .js,.jsx src"
},
"dependencies": {
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/runtime": "^7.18.9",
"@fullcalendar/daygrid": "^5.11.0",
"@fullcalendar/interaction": "^5.11.0",
"@fullcalendar/react": "^5.11.1",
"@fullcalendar/timegrid": "^5.11.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"add-to-calendar-button": "^2.1.2",
"babel-jest": "^28.1.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"camelcase-keys": "^8.0.1",
"dayjs": "^1.11.7",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.26.0",
"formik": "^2.2.9",
"json-server": "^0.17.0",
"kebabcase-keys": "^1.0.0",
"miragejs": "^0.1.45",
"moment": "^2.29.4",
"pigeon-maps": "^0.21.0",
"query-string": "^7.1.1",
"react": "^18.0.0",
"react-country-region-selector": "^3.6.1",
"react-datepicker": "^4.8.0",
"react-dom": "^18.0.0",
"react-ga": "^3.3.1",
"react-icons": "^4.7.1",
"react-multi-carousel": "^2.8.2",
"react-paginate": "^8.1.4",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"react-select": "^5.7.0",
"react-select-search": "^3.0.10",
"react-timezone-select": "^1.3.2",
"react-toastify": "^9.1.1",
"react-tooltip": "^4.5.0",
"snakecase-keys": "^5.4.2",
"timezone-soft": "^1.4.1",
"tw-elements": "^1.0.0-alpha12",
"uuid": "^8.3.2",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/preset-env": "^7.18.9",
"@testing-library/dom": "^8.14.0",
"@testing-library/user-event": "^14.2.1",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.5"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!camelcase-keys)/"
]
},
"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"
]
}
}