-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.73 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
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
118
119
120
121
{
"name": "club-management",
"version": "0.1.0",
"private": true,
"dependencies": {
"@artsy/fresnel": "^6.1.0",
"@craco/craco": "^6.4.3",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@hookform/resolvers": "^2.8.10",
"@reduxjs/toolkit": "^1.8.2",
"@rpldy/upload-button": "^1.1.0",
"@rpldy/upload-drop-zone": "^1.1.0",
"@rpldy/upload-preview": "^1.1.0",
"@rpldy/uploady": "^1.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/ckeditor__ckeditor5-build-classic": "^29.0.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-datepicker": "^4.4.2",
"@types/react-dom": "^18.0.0",
"@types/react-helmet": "^6.1.5",
"@types/react-redux": "^7.1.24",
"@types/redux": "^3.6.0",
"animate.css": "^4.1.1",
"apisauce": "^2.1.5",
"autoprefixer": "^9",
"classnames": "^2.3.1",
"dayjs": "^1.11.4",
"husky": "^8.0.1",
"pm2": "^5.2.0",
"postcss": "^7",
"prettier": "^2.6.2",
"rc-drawer": "^4.3.1",
"react": "^18.1.0",
"react-beautiful-dnd": "^13.1.1",
"react-datepicker": "^4.8.0",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.31.3",
"react-hotkeys-hook": "^3.4.6",
"react-image-crop": "^8.6.12",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-toastify": "^9.0.1",
"react-topbar-progress-indicator": "^4.1.1",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0",
"yup": "^0.32.11"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"lint": "eslint --fix .",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,css,md,json}\" --config ./.prettierrc",
"prepare": "husky install",
"pm2:start": "pm2 start ./ecosystem.config.js --env production ; pm2 status",
"pm2:reload": "pm2 reload ./ecosystem.config.js --env production ; pm2 status"
},
"lint-staged": {
"./src/**/*.{js,jsx,ts,tsx}": [
"yarn format"
]
},
"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"
]
},
"devDependencies": {
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@ckeditor/ckeditor5-build-classic": "^28.0.0",
"@ckeditor/ckeditor5-react": "^3.0.2",
"@emotion/babel-plugin": "^11.3.0",
"@reactour/tour": "^3.0.5",
"@types/lodash": "^4.14.170",
"@types/react-image-crop": "^8.1.3",
"@types/react-select": "^4.0.16",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-tailwind-components": "^0.5.10",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^7.28.0",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwind": "^0.2.1",
"lint-staged": "^11.0.0",
"tsconfig-paths-webpack-plugin": "^3.5.2"
}
}