-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.92 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
{
"name": "frontend",
"private": true,
"type": "module",
"engines": {
"node": "18.x.x",
"npm": "9.x.x"
},
"scripts": {
"lint:css": "npx stylelint \"src/**/*.scss\"",
"lint:js": "npx eslint \"src/**/*.{ts,tsx}\"",
"lint:type": "npx tsc --noEmit",
"lint": "npm run lint:type && npm run lint:js",
"start:dev": "vite",
"build": "tsc --build --clean && vite build",
"preview": "vite preview"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.3.0",
"@fortawesome/free-regular-svg-icons": "6.3.0",
"@fortawesome/free-solid-svg-icons": "6.3.0",
"@fortawesome/react-fontawesome": "0.2.0",
"@hookform/resolvers": "2.9.11",
"@reduxjs/toolkit": "1.9.3",
"chart.js": "4.2.1",
"chartjs-adapter-date-fns": "3.0.0",
"classnames": "2.3.2",
"date-fns": "2.29.3",
"prism-react-renderer": "1.3.5",
"rc-slider": "10.1.1",
"react": "18.2.0",
"react-chartjs-2": "5.2.0",
"react-collapse": "5.1.1",
"react-date-range": "1.4.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.5",
"react-redux": "8.0.5",
"react-router-dom": "6.8.2",
"react-toastify": "9.1.1",
"swiper": "9.1.1",
"react-select": "5.7.1"
},
"devDependencies": {
"@types/chart.js": "2.9.37",
"@types/react": "18.0.26",
"@types/react-collapse": "5.0.1",
"@types/react-date-range": "1.4.4",
"@types/react-dom": "18.0.9",
"@vitejs/plugin-react": "3.0.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.0",
"eslint-plugin-react-hooks": "4.6.0",
"sass": "1.58.3",
"stylelint-config-standard-scss": "7.0.1",
"vite": "4.0.0",
"vite-plugin-pwa": "0.14.4",
"vite-tsconfig-paths": "4.0.5"
}
}