-
-
Notifications
You must be signed in to change notification settings - Fork 169
/
package.json
129 lines (129 loc) · 3.83 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
122
123
124
125
126
127
128
129
{
"homepage": "https://thecyberhub.org/",
"name": "thecyberhub.org",
"private": true,
"version": "0.53.14",
"type": "module",
"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": "eslint --ext .js,.jsx . && stylelint **/*.jsx",
"lint:fix": "eslint --fix --ext .js,.jsx . && stylelint **/*.jsx --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"generate-sitemap": "node generateSitemap.js"
},
"dependencies": {
"@codemirror/lang-python": "^6.1.6",
"@radix-ui/react-slot": "^1.1.0",
"@reduxjs/toolkit": "^2.2.4",
"@uiw/codemirror-theme-dracula": "^4.23.0",
"@uiw/react-codemirror": "^4.23.0",
"@uiw/react-md-editor": "^4.0.4",
"add-to-calendar-button-react": "^2.6.14",
"axios": "^1.7.4",
"chart.js": "^4.4.2",
"crypto-js": "^4.2.0",
"date-fns": "^3.6.0",
"dompurify": "^3.1.3",
"dotenv": "^16.4.5",
"framer-motion": "^11.0.14",
"fs-extra": "^11.2.0",
"highlight.js": "^11.9.0",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.454.0",
"moment": "^2.30.1",
"path": "^0.12.7",
"path-to-regexp": "^6.2.2",
"react-calendar-heatmap": "^1.9.0",
"react-chartjs-2": "^5.2.0",
"react-chatbot-kit": "^2.2.2",
"react-codemirror2": "^8.0.0",
"react-csv": "^2.2.2",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-helmet-async": "^2.0.5",
"react-icons": "^5.2.1",
"react-infinite-scroll-component": "^6.1.0",
"react-markdown": "^9.0.1",
"react-quill": "^2.0.0",
"react-redux": "^9.1.2",
"react-router": "^6.23.1",
"react-router-dom": "^6.23.1",
"react-scroll": "^1.9.0",
"react-spinners": "^0.13.8",
"react-spinners-kit": "^1.9.1",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^10.0.5",
"react-transition-group": "^4.4.5",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.0",
"sass": "^1.77.4",
"sitemap": "^8.0.0",
"styled-components": "^6.1.11",
"validator": "^13.12.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@storybook/addon-essentials": "^8.1.5",
"@storybook/addon-interactions": "^8.1.5",
"@storybook/addon-links": "^8.1.5",
"@storybook/addon-onboarding": "^8.1.5",
"@storybook/blocks": "^8.1.5",
"@storybook/react": "^8.1.5",
"@storybook/react-vite": "^8.1.5",
"@storybook/test": "^8.1.5",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-no-relative-import-paths": "^1.5.4",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-storybook": "^0.8.0",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^3.2.5",
"prop-types": "^15.8.1",
"storybook": "^8.1.5",
"stylelint": "^16.5.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-plugin-styled-components": "^1.0.3",
"tailwindcss": "^3.4.3",
"vite": "^5.2.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --cache --fix",
"stylelint --fix"
],
"*.{js,jsx,css,md}": "prettier --write"
},
"eslintConfig": {
"settings": {
"react": {
"version": "detect"
}
}
}
}