-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "personal-portfolio",
"version": "1.0.0",
"description": "Personal portfolio website showcasing projects, skills, and contact information built with React",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode development --open",
"build": "webpack --mode production",
"test": "jest --config jest.config.js",
"lint": "eslint src --ext .js,.jsx",
"lint:fix": "eslint src --ext .js,.jsx --fix"
},
"keywords": [
"portfolio",
"react",
"webpack"
],
"author": "Code_Mike_Dev",
"license": "ISC",
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@studio-freight/lenis": "^1.0.42",
"gsap": "^3.14.2",
"lenis": "^1.3.17",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.9.6"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"babel-loader": "^10.0.0",
"css-loader": "^6.8.1",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^30.0.5",
"node-fetch": "^2.7.0",
"style-loader": "^4.0.0",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}