-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 2.04 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
{
"name": "vite-react-typescript-starter",
"private": false,
"version": "0.0.0",
"description": "A Vite + React + TypeScript starter template.",
"author": "Boussadjra Brahim ",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"-": "^0.0.1",
"D": "^1.0.0",
"chart.js": "^4.4.0",
"eslint-plugin-import": "^2.28.1",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.2",
"react-redux": "^8.1.2",
"react-router": "^6.16.0",
"react-router-dom": "^6.16.0",
"redux": "^4.2.1"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "^1.2.0",
"@faker-js/faker": "^8.1.0",
"@iconify-json/solar": "^1.1.3",
"@iconify-json/tabler": "^1.1.91",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@types/react-redux": "^7.1.26",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@unocss/preset-attributify": "^0.56.1",
"@unocss/preset-icons": "^0.56.1",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.16",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.30",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"unocss": "^0.56.1",
"unplugin-auto-import": "^0.16.6",
"vite": "^4.4.9",
"vite-plugin-md": "^0.21.5",
"vite-plugin-pages": "^0.31.0",
"vite-plugin-pwa": "^0.16.5"
},
"lint-staged": {
"*": "eslint --fix"
},
"prettier": "./.prettierrc.json"
}