-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.21 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
{
"name": "frontend",
"version": "1.0.0",
"private": true,
"description": "A frontend project for showcasing a portfolio website.",
"type": "module",
"homepage": "https://t-ibrahimm.github.io/t-ibrahimm.github.io",
"scripts": {
"serve": "vite preview ",
"dev": "vite",
"build": "vite build",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --check .",
"check": "yarn lint && yarn format && yarn test",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format:fix": "prettier --write .",
"fix": "yarn lint:fix && yarn format:fix",
"predeploy": "yarn fix && yarn build",
"deploy": "git add . && git commit --allow-empty -m \"[deploy] trigger build\" && git push origin master"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.20",
"@mui/material": "^5.15.20",
"react": "^18.2.0",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-dom": "^18.2.0",
"react-router-dom": "^6.23.1",
"typewriter-effect": "^2.21.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"gh-pages": "^6.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.0",
"vite": "^5.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/t-ibrahimm/t-ibrahimm.github.io.git"
},
"bugs": {
"url": "https://github.com/t-ibrahimm/t-ibrahimm.github.io/issues"
},
"keywords": [
"portfolio",
"react",
"vite",
"mui",
"web3forms"
],
"author": "Tarek Ibrahim <[email protected]>",
"license": "MIT"
}