This repository was archived by the owner on Aug 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.36 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.36 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
{
"name": "colefrench-github-io",
"version": "4.0.0",
"description": "My personal website.",
"homepage": "https://cfrench.cc",
"bugs": {
"url": "https://github.com/ColeFrench/colefrench.github.io/issues"
},
"license": "MIT",
"author": "Cole French",
"main": "src/client.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ColeFrench/colefrench.github.io.git"
},
"scripts": {
"build": "rimraf ./build && razzle build --noninteractive",
"deploy": "gh-pages -d build/public -b main",
"start": "razzle start",
"serve": "serve -s build/public",
"lint": "eslint src",
"test": "razzle test --env=jsdom",
"analyze": "npm run build && source-map-explorer build/public/static/js/*.chunk.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "0.2.2",
"immer": "^10.0.4",
"loader-utils": "^3.3.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-burger-menu": "^3.1.0",
"react-dom": "^18.3.1",
"react-helmet-async": "^1.3.0",
"react-markdown": "^9.0.3",
"react-router-dom": "^6.28.0",
"shell-quote": "^1.8.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"babel-preset-razzle": "^4.2.18",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"file-loader": "^6.2.0",
"gh-pages": "^6.3.0",
"html-webpack-plugin": "^5.6.3",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"razzle": "^4.2.18",
"razzle-dev-utils": "^4.2.18",
"razzle-plugin-scss": "^4.2.18",
"rimraf": "^6.0.1",
"serve": "^14.2.4",
"source-map-explorer": "^2.5.3",
"style-loader": "^4.0.0",
"url": "^0.11.4",
"util": "^0.12.5",
"webpack": "^5.100.2",
"webpack-dev-server": "^4.15.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}