-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.53 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.53 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
{
"name": "portfolio-web",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Modern portfolio built with React, TypeScript, and Vite - showcasing projects, skills, and experience",
"author": {
"name": "Sandro Gomez",
"email": "sandrodevx@gmail.com",
"url": "https://sandrodevx-portfolio.vercel.app"
},
"repository": {
"type": "git",
"url": "https://github.com/sandrogomez-dev/portfolio-web.git"
},
"keywords": [
"portfolio",
"react",
"typescript",
"vite",
"bootstrap",
"framer-motion",
"web-development"
],
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,scss,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,scss,css,json}\"",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist node_modules/.vite",
"clean:full": "rm -rf dist node_modules node_modules/.vite package-lock.json",
"reinstall": "npm run clean:full && npm install",
"validate": "npm run type-check && npm run lint && npm run format:check",
"analyze": "vite build --mode analyze",
"serve": "npm run build && npm run preview",
"update:deps": "npm outdated",
"update:minor": "npm update --save",
"check:size": "npm run build && du -sh dist",
"dev:host": "vite --host",
"dev:open": "vite --open"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.1",
"bootstrap": "^5.3.2",
"react-bootstrap": "^2.9.1",
"react-icons": "^4.12.0",
"framer-motion": "^10.16.5",
"tsparticles": "^3.0.3",
"@tsparticles/react": "^3.0.0",
"@tsparticles/engine": "^3.0.3",
"@tsparticles/basic": "^3.0.3",
"chart.js": "^4.4.0",
"react-chartjs-2": "^5.2.0",
"react-spring": "^9.7.3",
"react-intersection-observer": "^9.5.3",
"swiper": "^11.0.5",
"lottie-react": "^2.4.0",
"react-type-animation": "^3.2.0",
"sass": "^1.69.5"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.1.1",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"typescript": "^5.2.2",
"vite": "^5.0.0"
}
}