-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.68 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.68 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
83
84
85
86
87
88
89
90
91
92
{
"name": "portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"audit:dev": "concurrently \"yarn run dev\" \"sleep 5 && lighthouse http://localhost:5173/ --view --preset=desktop\"",
"dev": "vite",
"test": "vitest",
"coverage": "vitest run --coverage --reporter=verbose",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"description": "My personal portfolio",
"author": {
"name": "Felipe André",
"email": "profissionalf.andre@gmail.com"
},
"bugs": {
"url": "https://github.com/fandredev/portfolio/issues",
"email": "profissionalf.andre@gmail.com"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@hookform/resolvers": "^5.2.2",
"@tanstack/react-query": "^5.90.19",
"@tanstack/react-query-devtools": "^5.91.2",
"axios": "^1.15.0",
"i18next": "^25.8.0",
"i18next-browser-languagedetector": "^8.2.0",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-error-boundary": "^6.1.0",
"react-hook-form": "^7.71.1",
"react-i18next": "^16.5.3",
"react-icons": "^5.5.0",
"react-router-dom": "^7.12.0",
"react-toastify": "^11.0.5",
"recharts": "^3.7.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.0",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "^9.39.2",
"@storybook/addon-docs": "^10.2.0",
"@storybook/addon-onboarding": "^10.2.0",
"@storybook/react-vite": "^10.2.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.5.1",
"@vitest/coverage-v8": "^3.2.1",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-storybook": "^10.2.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.2.7",
"storybook": "^10.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^6.4.2",
"vite-plugin-remove-console": "^2.2.0",
"vitest": "^3.2.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"vitest related --run"
]
}
}