-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.49 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.49 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "front-end",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext js,jsx,html,ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext js,jsx,html,ts,tsx --fix",
"format": "prettier --write 'src/**/*.{js,jsx,html,ts,tsx}'",
"preview": "vite preview",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/resolvers": "^3.3.4",
"@promentor-app/shared-lib": "^1.0.29",
"@types/node": "^20.11.0",
"bootstrap": "^5.3.2",
"firebase": "^10.11.0",
"keycloak-js": "^23.0.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-avatar": "^5.0.3",
"react-big-calendar": "^1.10.3",
"react-bootstrap": "^2.10.0",
"react-bootstrap-sidebar-menu": "^2.0.3",
"react-datepicker": "^6.9.0",
"react-dom": "^18.2.0",
"react-dropdown-select": "^4.11.2",
"react-hook-form": "^7.51.0",
"react-router-dom": "^6.21.1",
"react-toastify": "^10.0.5",
"recharts": "^2.12.1",
"sass": "^1.69.7",
"swr": "^2.2.5",
"uniqid": "^5.4.0",
"vite-tsconfig-paths": "^4.2.3",
"yup": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/react": "^18.2.43",
"@types/react-big-calendar": "^1.8.8",
"@types/react-datepicker": "^6.2.0",
"@types/react-dom": "^18.2.17",
"@types/uniqid": "^5.3.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-node-polyfills": "^0.21.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint && npm run format"
}
},
"lint-staged": {
"src/**/*.{js,jsx,html,ts,tsx}": [
"npm run lint",
"npm run format"
]
}
}