-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.95 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
{
"name": "astralyn",
"author": "issam-seghir",
"private": true,
"version": "1.0.0",
"license": "GPL-3.0",
"type": "module",
"browserslist": [
"defaults and supports es6-module",
"maintained node versions"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist test",
"sass:watch": "sass src/scss/main.scss css/main.css --watch --no-source-map --error-css",
"lint:js": "npx eslint \"**/*.{html,js,ts,jsx,tsx}\"",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:style": "npx stylelint \"**/**/*.{html,css,less,postcss,scss,astro}\"",
"lint:style:fix": "npm run lint:style -- --fix",
"lint": "npm run lint:js && npm run lint:style",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-compat": "^4.1.4",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.20.0",
"eslint-plugin-unicorn": "^48.0.1",
"gerillass": "^1.3.1",
"postcss-html": "^1.5.0",
"postcss-inline-svg": "^6.0.0",
"postcss-markdown": "^1.2.0",
"postcss-preset-env": "^9.1.3",
"sass": "^1.69.4",
"stylelint": "^15.10.3",
"stylelint-config-clean-order": "^5.2.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-high-performance-animation": "^1.9.0",
"vite": "^4.4.5",
"vite-aliases": "^0.11.3",
"vite-plugin-svgr": "^4.1.0"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/inter": "^5.0.15",
"@mui/icons-material": "^5.14.16",
"@mui/joy": "^5.0.0-beta.13",
"@syncfusion/ej2": "^23.1.43",
"@syncfusion/ej2-layouts": "^21.1.42",
"@syncfusion/ej2-react-calendars": "^23.1.41",
"@syncfusion/ej2-react-charts": "^23.1.44",
"@syncfusion/ej2-react-diagrams": "^23.1.44",
"@syncfusion/ej2-react-grids": "^23.1.43",
"@syncfusion/ej2-react-kanban": "^23.1.36",
"@syncfusion/ej2-react-layouts": "^23.1.36",
"@syncfusion/ej2-react-richtexteditor": "^23.1.43",
"@syncfusion/ej2-react-schedule": "^23.1.40",
"@uidotdev/usehooks": "^2.4.1",
"cldr-data": "^36.0.1",
"leaflet": "^1.9.4",
"leaflet-geosearch": "^3.11.0",
"leaflet.fullscreen": "^3.0.0",
"marked": "^10.0.0",
"million": "^2.6.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.3",
"react-icons": "^4.3.1",
"react-leaflet": "^4.2.1",
"react-router-dom": "^6.2.1",
"rfs": "^10.0.0"
}
}