-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 3.15 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
{
"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}\"",
"test": "jest --passWithNoTests",
"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 test",
"npm run lint:fix --",
"git add --"
],
"*.{md,css}": [
"npm run prettier --",
"git add --"
]
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/runtime": "^7.26.0",
"@eslint/js": "^9.13.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.3.0",
"chokidar": "^4.0.1",
"css-loader": "^7.1.2",
"debug": "^4.3.7",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.13.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"file-loader": "^6.2.0",
"firebase-admin": "^12.7.0",
"firebase-tools": "^13.23.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"react-async-script": "^1.2.0",
"react-refresh": "^0.14.2",
"react-test-renderer": "^18.3.1",
"strip-ansi": "^7.1.0",
"style-loader": "^4.0.0",
"through2": "^4.0.2",
"url-loader": "^4.1.1",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"workbox-webpack-plugin": "^7.1.0"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@reduxjs/toolkit": "^2.3.0",
"firebase": "^11.0.1",
"hamburger-react": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-google-recaptcha-v3": "^1.10.1",
"react-hot-toast": "^2.4.1",
"react-loader-spinner": "^6.1.6",
"react-redux": "^9.1.2",
"react-router-dom": "^6.27.0",
"react-text-transition": "^3.1.0",
"styled-components": "^6.1.13"
}
}