-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.66 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
{
"name": "zacks-homepage",
"version": "0.5.0",
"private": true,
"description": "A simple homepage for a Zack",
"keywords": [
"node",
"homepage",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/genuinezack/my-homepage"
},
"license": "MIT",
"author": "Zack Sheppard (zacksheppard.com)",
"scripts": {
"build": "next build",
"dev": "next",
"export": "next build && next export",
"lint": "eslint",
"lint:fix": "eslint --fix",
"start": "next start"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"next": "^15.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@netlify/plugin-nextjs": "^5.9.3",
"@svgr/webpack": "^8.1.0",
"@types/node": "^22.10.0",
"@types/react": "^19.0.0",
"@types/smoothscroll-polyfill": "^0.3.3",
"autoprefixer": "^10.4.6",
"eslint": "^8.54.0",
"eslint-config-next": "^15.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"postcss": "^8.4.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^10.1.0",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.4.0",
"eslint-plugin-react-hooks": "5.0.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.3.0"
}
}