-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3.44 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "eleniarvanitis.com",
"repository": "github.com/DatGreekChick/personal",
"author": "Eleni Arvanitis Konior",
"license": "ISC",
"version": "2.0.0",
"description": "My personal website featuring my portfolio and writing pieces.",
"main": "main.js",
"type": "module",
"babelMacros": {
"fontawesome-svg-core": {
"license": "free"
}
},
"scripts": {
"build": "webpack build --mode development",
"build:prod": "webpack build --mode production",
"clean": "rm public/*.bundle.js public/*.bundle.js.LICENSE.txt firebase-debug.log",
"deploy": "npm run build:prod && npx firebase deploy",
"lint": "npm run clean; echo \"\nRunning linter...\"; npx eslint .; echo \"\nLinting complete!\"",
"lint:fix": "npm run lint --fix",
"prettier": "npx prettier --write \"./**/*.{js,jsx,md}\"",
"start": "node dev",
"watch": "npm run build -- -w"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"arrowParens": "avoid",
"proseWrap": "always"
},
"lint-staged": {
"*.{js,jsx}": [
"npm run prettier --",
"npm run lint:fix --",
"git add --"
],
"*.{md,css}": [
"npm run prettier --",
"git add --"
]
},
"overrides": {
"@react-spring/web": {
"react": "^19",
"react-dom": "^19"
},
"@reduxjs/toolkit": {
"react": "^19"
},
"hamburger-react": {
"react": "^19"
},
"react-google-recaptcha-v3": {
"react": "^19",
"react-dom": "^19"
},
"react-loader-spinner": {
"react": "^19",
"react-dom": "^19"
}
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/runtime": "^7.26.0",
"@eslint/js": "^9.14.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"babel-loader": "^9.2.1",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.1.4",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"css-loader": "^7.1.2",
"debug": "^4.4.0",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.3",
"file-loader": "^6.2.0",
"firebase-admin": "^13.0.2",
"firebase-tools": "^13.29.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"react-async-script": "^1.2.0",
"react-refresh": "^0.16.0",
"strip-ansi": "^7.1.0",
"style-loader": "^4.0.0",
"through2": "^4.0.2",
"url-loader": "^4.1.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"workbox-webpack-plugin": "^7.3.0"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@react-spring/web": "^9.7.5",
"@reduxjs/toolkit": "^2.5.0",
"firebase": "^11.1.0",
"hamburger-react": "^2.5.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"react-google-recaptcha-v3": "^1.10.1",
"react-hot-toast": "^2.4.1",
"react-loader-spinner": "^6.1.6",
"react-redux": "^9.2.0",
"react-router": "^7.1.1",
"styled-components": "^6.1.13"
}
}