forked from th3cyb3rhub/TheCyberHUB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.01 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
{
"homepage": "https://thecyberhub.org/",
"name": "thecyberhub.org",
"private": true,
"version": "0.53.14",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"dev": "vite",
"build": "NODE_OPTIONS=\"--max-old-space-size=4096\" vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint:fix": "eslint --fix --ext .js,.jsx ."
},
"dependencies": {
"@radix-ui/react-slot": "^1.0.1",
"@reduxjs/toolkit": "^1.9.1",
"@uiw/react-md-editor": "^4.0.1",
"add-to-calendar-button-react": "^2.5.9",
"axios": "^1.6.4",
"chart.js": "^4.4.1",
"crypto-js": "^4.2.0",
"date-fns": "^2.30.0",
"dompurify": "^3.0.5",
"dotenv": "^16.0.3",
"fs-extra": "^11.1.1",
"highlight.js": "^11.8.0",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"jwt-decode": "^4.0.0",
"moment": "^2.29.4",
"path": "^0.12.7",
"path-to-regexp": "^6.2.1",
"react-calendar-heatmap": "^1.9.0",
"react-chartjs-2": "^5.2.0",
"react-chatbot-kit": "^2.1.2",
"react-day-picker": "^8.7.1",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-helmet": "^6.1.0",
"react-icons": "^4.12.0",
"react-infinite-scroll-component": "^6.1.0",
"react-markdown": "^8.0.7",
"react-quill": "^2.0.0",
"react-redux": "^8.0.4",
"react-router": "^6.15.0",
"react-router-dom": "^6.16.0",
"react-scroll": "^1.8.8",
"react-spinners": "^0.13.6",
"react-spinners-kit": "^1.9.1",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^9.1.1",
"react-transition-group": "^4.4.5",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^3.0.1",
"sass": "^1.55.0",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-no-relative-import-paths": "^1.5.4",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"gh-pages": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.32",
"prettier": "^2.7.1",
"tailwindcss": "^3.3.6",
"vite": "^3.1.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --cache --fix"
],
"*.{js,jsx,css,md}": "prettier --write"
},
"eslintConfig": {
"settings": {
"react": {
"version": "detect"
}
}
}
}