-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.62 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
{
"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": "^13.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@netlify/plugin-nextjs": "^4.41.2",
"@svgr/webpack": "^8.1.0",
"@types/node": "^18.12.0",
"@types/react": "^18.2.0",
"@types/smoothscroll-polyfill": "^0.3.3",
"autoprefixer": "^10.4.6",
"eslint": "^8.54.0",
"eslint-config-next": "^13.1.6",
"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": "^9.3.0",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.4.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.3.0"
}
}