-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.93 KB
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
{
"name": "stafflab-fe",
"description": "A Frontend Stafflab project",
"version": "1.0.0",
"author": "irfnd <irfandiabimanyu@gmail.com>",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "eslint . --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,md}\""
},
"dependencies": {
"@chakra-ui/react": "^2.5.1",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/inter": "^4.5.15",
"@fontsource/share-tech-mono": "^4.5.9",
"@hookform/resolvers": "^2.9.11",
"@reduxjs/toolkit": "^1.9.3",
"@supabase/supabase-js": "^2.10.0",
"axios": "^1.3.4",
"chart.js": "^4.2.1",
"filesize-parser": "^1.5.0",
"framer-motion": "^10.2.3",
"js-file-download": "^0.4.12",
"lucide-react": "0.124.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.43.5",
"react-number-format": "^5.1.4",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.2",
"react-use": "^17.4.0",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.2",
"use-react-router-breadcrumbs": "^4.0.1",
"yup": "^1.0.2",
"yup-password": "^0.2.2"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.35.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"supabase": "^1.42.2",
"vite": "^4.1.4"
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md}": "prettier --write"
}
}