-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3 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
{
"name": "@nish1896/react-libs",
"version": "1.0.0",
"author": "Nishant Kohli",
"dependencies": {
"@bpmn-io/form-js-editor": "^1.7.0",
"@bpmn-io/form-js-viewer": "^1.7.0",
"@ckeditor/ckeditor5-react": "^9.0.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@faker-js/faker": "^8.4.0",
"@fontsource/covered-by-your-grace": "^5.0.8",
"@fontsource/crimson-pro": "^5.0.16",
"@fontsource/roboto": "^5.0.8",
"@hookform/resolvers": "^2.9.7",
"@mui/icons-material": "^5.15.7",
"@mui/material": "^5.15.7",
"@mui/styles": "^5.15.7",
"@reduxjs/toolkit": "^2.1.0",
"@zoomus/websdk": "^1.9.6",
"algoliasearch": "^4.22.1",
"aos": "^2.3.4",
"axios": "^1.6.7",
"bootstrap": "^5.3.2",
"ckeditor5": "^43.0.0",
"classnames": "^2.3.2",
"cogo-toast": "^4.2.3",
"customize-cra": "^1.0.0",
"final-form": "^4.20.7",
"formik": "^2.4.5",
"jquery": "^3.5.1",
"mui-rte": "^2.0.1",
"react": "^18.0.2",
"react-beautiful-dnd": "^13.1.1",
"react-charts": "^2.0.0-beta.7",
"react-color": "^2.19.3",
"react-csv": "^2.2.2",
"react-dom": "^18.0.2",
"react-final-form": "^6.5.9",
"react-hook-form": "^7.50.1",
"react-icons": "^5.0.1",
"react-instantsearch": "^7.5.5",
"react-player": "^2.14.1",
"react-query": "^3.39.3",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.0",
"react-scripts": "5.0.1",
"react-toastify": "^10.0.5",
"react-window": "^1.8.10",
"redux-persist": "^6.0.0",
"short-unique-id": "^5.0.3",
"video.js": "^7.10.2",
"videojs-youtube": "^2.6.1",
"web-vitals": "^0.2.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@nish1896/eslint-config": "^2.0.5",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.1",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.19",
"cypress": "^12.5.1",
"eslint": "^8.57.0",
"husky": "^9.0.10",
"lint-staged": "^10.2.13",
"postcss": "^8.4.38",
"prettier": "^2.2.1",
"react-app-rewired": "^2.1.8",
"style-dictionary": "^3.9.2",
"tailwindcss": "^3.4.3",
"typescript": "^5.3.3"
},
"scripts": {
"build-dictionary": "style-dictionary build --config ./style-dictionary/config.js",
"dev": "yarn build-dictionary && react-app-rewired start",
"build": "yarn build-dictionary && react-app-rewired build",
"start": "yarn build && serve -l 3002 -s build",
"eject": "react-scripts eject",
"lint": "eslint --fix .",
"cypress:open": "cypress open",
"prepare": "husky"
},
"lint-staged": {
"*.{js, jsx, ts, tsx}": [
"eslint --fix"
],
"*.{json, html, css, sass, scss}": [
"prettier --write --ignore-unknown"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}