-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.31 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.31 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
{
"name": "@castillo/core",
"version": "2.0.0",
"scripts": {
"build:app": "NODE_ENV=production react-scripts build",
"build:sb": "build-storybook -s public",
"lint": "eslint --ext .js,.ts,.tsx .",
"lint:fix": "eslint --fix --ignore-path .gitignore --ext .js,.ts,.tsx .",
"precommit": "tsc && npx lint-staged",
"prepare": "husky install",
"start:app": "react-scripts start",
"start:sb": "start-storybook -p 6006 -s public"
},
"dependencies": {
"@chakra-ui/react": "^2.3.6",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fullcalendar/core": "^5.11.3",
"@fullcalendar/daygrid": "^5.11.3",
"@fullcalendar/list": "^5.11.3",
"@fullcalendar/react": "^5.11.2",
"axios": "^1.1.2",
"body-scroll-lock": "^4.0.0-beta.0",
"color": "^4.2.3",
"date-fns": "^2.29.3",
"formik": "^2.2.9",
"framer-motion": "^7.5.3",
"i18next": "^21.10.0",
"i18next-browser-languagedetector": "^6.1.8",
"i18next-http-backend": "^1.4.4",
"lodash": "^4.17.21",
"mapbox-gl": "^2.12.1",
"nanoid": "^4.0.0",
"react": "^18.2.0",
"react-div-100vh": "^0.7.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-i18next": "^11.18.6",
"react-icons": "^4.4.0",
"react-map-gl": "^7.0.21",
"react-number-format": "^5.1.1",
"react-query": "^3.39.2",
"react-router-dom": "^6.4.2",
"react-scripts": "^5.0.1",
"react-toastify": "^9.0.8",
"string-mask": "^0.3.0",
"typescript": "^4.8.4",
"worker-loader": "^3.0.8",
"yup": "^0.32.11"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/node-logger": "^6.5.12",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@types/node": "^18.8.4",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"babel-plugin-named-exports-order": "^0.0.2",
"eslint": "^8.25.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-custom-alias": "^1.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"webpack": "^5.74.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx}": [
"prettier --write"
],
"*{js,jsx,ts,tsx}": [
"eslint --ext .js,.ts,.tsx --ignore-pattern .storybook/**/*.js ."
]
},
"private": true
}