-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
94 lines (94 loc) · 2.5 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
{
"name": "react-chatbotify-gallery",
"version": "0.1.0",
"keywords": [
"react-chatbotify",
"website"
],
"description": "A gallery for showcasing React ChatBotify themes.",
"author": "tjtanjin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tjtanjin/react-chatbotify-gallery"
},
"private": true,
"type": "module",
"dependencies": {
"@chakra-ui/react": "^3.0.1",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.9",
"@mui/material": "^6.1.9",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@vitejs/plugin-react": "^4.2.1",
"file-saver": "^2.0.5",
"i18next": "^23.15.2",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.6.2",
"jszip": "^3.10.1",
"lucide-react": "^0.376.0",
"next-themes": "^0.3.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-chatbotify": "^2.0.0-beta.26",
"react-dom": "^18.2.0",
"react-i18next": "^15.0.2",
"react-icons": "^5.3.0",
"react-loading-skeleton": "^3.4.0",
"react-router-dom": "^6.2.2",
"react-toastify": "^11.0.2",
"uuid": "^9.0.1",
"vite-plugin-mkcert": "^1.17.5",
"web-vitals": "^1.1.2"
},
"devDependencies": {
"@types/file-saver": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^8.0.0",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"vite": "^5.2.10",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1"
},
"scripts": {
"lint": "eslint --fix . --ext .tsx",
"test": "node ./test/RunTests.js",
"build": "vite build",
"start": "vite",
"preview": "vite preview",
"prepare": "husky install"
},
"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"
]
}
}