-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.24 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
{
"name": "ivangonzalez-resume",
"version": "0.4.0",
"description": "Ivan Gonzalez Resume",
"private": true,
"repository": {
"url": "https://github.com/ivangonzalezacuna/resume-react",
"type": "git"
},
"author": "Ivan Gonzalez <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"dev": "yarn install && netlify dev",
"test": "echo 'Work in progress'",
"tsc": "tsc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prettier:fix": "prettier --write .",
"prettier:check": "prettier --check .",
"check:full": "yarn install && yarn tsc && yarn lint && yarn prettier:check"
},
"dependencies": {
"@netlify/functions": "^2.7.0",
"cross-fetch": "^4.0.0",
"framer-motion": "^11.2.10",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.5.2",
"node-mailjet": "^6.0.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.2",
"react-icons": "^5.2.1",
"react-is": "^18.3.1",
"react-lottie-player": "^2.0.0",
"react-router-dom": "^6.23.1",
"styled-components": "^6.1.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^14.3.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-react": "^4.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"netlify-cli": "^17.25.0",
"prettier": "^3.3.0",
"typescript": "^5.4.5",
"vite": "^5.2.12"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]"
}