-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.96 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.96 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
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
{
"name": "eleniarvanitis.com",
"repository": "https://github.com/DatGreekChick/personal.git",
"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",
"scripts": {
"build": "NODE_ENV=production bun run build.js && rm -f public/chunk-*.css",
"clean": "rm public/chunk*.js public/chunk*.css public/main.css public/main.js LICENSE.txt firebase-debug.log",
"deploy": "bun run build && bun x firebase deploy",
"lint": "bun x eslint .",
"lint:fix": "bun run lint --fix",
"prettier": "bun x prettier --write \"./**/*.{js,jsx,md}\"",
"start": "NODE_ENV=development bun dev.js",
"test": "bun test",
"test:watch": "bun test --hot --watch"
},
"commitlint": {
"extends": ["@commitlint/config-conventional"],
"rules": {
"scope-enum": [2, "always", [
"about",
"api",
"app",
"articles",
"contact",
"deps",
"fallbacks",
"firebase",
"home",
"nav",
"uses",
"work"
]]
}
},
"release": {
"repositoryUrl": "https://github.com/DatGreekChick/personal.git",
"branches": ["main"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"arrowParens": "avoid",
"proseWrap": "always"
},
"lint-staged": {
"*.{js,jsx}": [
"bun run prettier --",
"bun run lint:fix --",
"git add --"
],
"*.{md,css}": [
"bun run prettier --",
"git add --"
]
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@happy-dom/global-registrator": "^20.9.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/release-notes-generator": "^14.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"eslint": "^10.2.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"firebase-tools": "^15.15.0",
"globals": "^17.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"msw": "^2.13.4",
"open": "^11.0.0",
"picocolors": "^1.1.1",
"prettier": "^3.8.3",
"semantic-release": "^25.0.3"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@reduxjs/toolkit": "^2.11.2",
"firebase": "^12.12.0",
"hamburger-react": "^2.5.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-error-boundary": "^6.1.1",
"react-google-recaptcha-v3": "^1.11.0",
"react-hook-form": "^7.72.1",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.6.0",
"react-redux": "^9.2.0",
"react-router": "^7.14.1"
}
}