-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.24 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
{
"name": "andrew-davis.net",
"version": "2.0.0",
"description": "Personal Website for Andrew Davis",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .jsx,.js,.ts,.tsx,.mdx --fix --ignore-path ./.gitignore ."
},
"repository": {
"type": "git",
"url": "git+ https://github.com/tuf75588/nextjs-portfolio"
},
"author": "Andrew Davis",
"license": "MIT",
"bugs": {
"url": "https://github.com/tuf75588/nextjs-portfolio/issues"
},
"homepage": "https://github.com/tuf75588/nextjs-portfolio#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.14",
"next": "10.0.4",
"next-seo": "^4.17.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-ga": "^3.3.0"
},
"devDependencies": {
"@mapbox/rehype-prism": "^0.5.0",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^10.0.4",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"autoprefixer": "10.1.0",
"babel-eslint": "^10.1.0",
"classnames": "2.2.6",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mdx": "^1.8.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"file-loader": "^6.2.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"postcss": "8.2.1",
"postcss-100vh-fix": "1.0.2",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-hover-media-feature": "1.0.0",
"postcss-preset-env": "6.7.0",
"prettier": "^2.2.1",
"tailwindcss": "2.0.2",
"typescript": "^4.1.3"
},
"engines": {
"node": "12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,md,json}": "prettier --write",
"*.{js,jsx,ts,tsx,mdx}": "eslint --fix --ignore-path ./.gitignore"
}
}