-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.62 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
{
"name": "selody",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest",
"lint": "eslint 'src/**/*.{js,jsx}'",
"lint:fix": "eslint 'src/**/*.{js,jsx}' --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^40.1.0",
"@ckeditor/ckeditor5-react": "^6.2.0",
"@fullcalendar/core": "^6.1.8",
"@fullcalendar/daygrid": "^6.1.8",
"@fullcalendar/interaction": "^6.1.8",
"@fullcalendar/react": "^6.1.8",
"@fullcalendar/rrule": "^6.1.10",
"@fullcalendar/timegrid": "^6.1.8",
"@react-oauth/google": "^0.11.0",
"@reduxjs/toolkit": "^1.9.3",
"axios": "^1.4.0",
"browser-image-compression": "^2.0.2",
"cross-env": "7.0.3",
"date-fns": "^2.30.0",
"dotenv": "16.3.1",
"eslint": "8.49.0",
"eslint-plugin-import": "2.28.0",
"framer-motion": "^10.12.14",
"jest-transform-stub": "2.0.0",
"jest-transformer-svg": "2.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-cookie": "^6.1.1",
"react-datepicker": "^4.21.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.10.0",
"react-toastify": "^9.1.2",
"react-type-animation": "^3.2.0",
"redux-mock-store": "^1.5.4",
"styled-components": "^5.3.9",
"vite-plugin-svgr": "3.2.0"
},
"devDependencies": {
"@babel/plugin-syntax-jsx": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@storybook/addon-essentials": "^7.0.12",
"@storybook/addon-interactions": "^7.0.12",
"@storybook/addon-links": "^7.0.12",
"@storybook/addon-styling": "^1.0.8",
"@storybook/blocks": "^7.0.12",
"@storybook/react": "^7.0.12",
"@storybook/react-vite": "^7.0.12",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-css-modules": "^2.1.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"msw": "^1.2.1",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"redux-mock-store": "^1.5.4",
"vite": "^4.3.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}