-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.65 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"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"
},
"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": "^3.9.0",
"@tanstack/react-query": "^5.59.16",
"@tanstack/react-query-devtools": "^5.59.16",
"axios": "^1.7.7",
"i18next": "^23.15.1",
"i18next-browser-languagedetector": "^8.0.0",
"lucide-react": "^0.441.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-hook-form": "^7.53.0",
"react-i18next": "^15.0.2",
"react-icons": "^5.3.0",
"react-router-dom": "^6.26.2",
"react-toastify": "^10.0.5",
"recharts": "^2.13.0",
"storybook": "^8.4.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^3",
"@eslint/js": "^9.9.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/manager-api": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/theming": "^8.4.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.1",
"concurrently": "^9.1.0",
"eslint": "^9.9.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"eslint-plugin-storybook": "^0.11.1",
"globals": "^15.9.0",
"jsdom": "^25.0.0",
"storybook-react-context": "^0.7.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.6",
"vite-plugin-remove-console": "^2.2.0",
"vitest": "^2.1.1"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}