-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.54 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
{
"name": "portfolio-template",
"version": "0.2.1",
"private": true,
"homepage": "https://fahimsweb.github.io/portfolio-template",
"title": "Welcome to Fahim's Portfolio",
"description": "Created by Fahim - An Opensource starter Portfolio template with NextJS, React, Typescript, Tailwind and react-icons, feel free to use it as you wish ;). Make sure to update the author section and description sections accordingly",
"author": {
"name": "Fahim Mohammed",
"email": "[email protected]",
"url": "https://github.com/fahimsweb/portfolio-template",
"github": "https://github.com/fahimsweb",
"linkedIn": "https://www.linkedin.com/in/fahimsweb",
"like": "Inspired by this portfolio? Create yours for free (it’s open source)!",
"bio": "A frontend software engineer with extensive experience in developing high-performance, user-centric web applications. I focus on delivering clean, maintainable code and creating intuitive user experiences. With a passion for continuous learning and collaboration, I thrive on tackling complex challenges and contributing to innovative solutions. Let’s connect!",
"skills": [
"JavaScript",
"Typescript",
"React",
"Vuejs",
"Angular",
"NextJS",
"Material UI",
"Bootstrap",
"NodeJs",
"React Native",
"ExpressJs",
"HTML",
"CSS",
"Aws",
"Docker",
"Git"
]
},
"scripts": {
"dev": "next dev",
"build": "next build",
"predeploy": "npm run build",
"deploy": "gh-pages -d out",
"clean-check": "prettier --c \"**/*.{js,jsx,ts,tsx,md,json,cjs,mjs}\" ",
"clean": "prettier --log-level warn --write \"**/*.{js,jsx,ts,tsx,md,json,cjs,mjs}\" ",
"lint-check": "eslint ./src --ext .js,.jsx,.ts,.tsx --report-unused-disable-directives --max-warnings 0",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"@tsparticles/engine": "^3.5.0",
"@tsparticles/react": "^3.0.0",
"@tsparticles/slim": "^3.5.0",
"next": "14.2.13",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"gh-pages": "^6.1.1",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.1",
"typescript": "5.5.4"
}
}