-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.39 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.39 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
{
"name": "pejpero_portfolio",
"version": "1.0.0",
"description": "Pejpero Portfolio website built with ft_react, TypeScript, and Tailwind CSS",
"type": "module",
"main": "src/app.js",
"homepage": "https://pejpero.com/",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d dist -b page",
"docker-deploy": "docker build --ssh default -t pejpero-portfolio .",
"start": "webpack serve",
"build": "webpack --mode production; rm dist/public/index.html; mv dist/public/*.html dist"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.2",
"@types/webpack-env": "^1.18.8",
"autoprefixer": "^10.4.21",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"postcss": "^8.5.3",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.1.4",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"dependencies": {
"dotenv": "^16.5.0",
"gh-pages": "^6.3.0",
"html-webpack-plugin": "^5.6.3",
"lodash": "^4.17.21",
"particles.js": "^2.0.0",
"react-icons": "^5.5.0",
"ts-loader": "^9.5.2"
}
}