-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 2.67 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
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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/kpfromer/portfolio"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"lint": "eslint '**/*.{js,jsx,ts,tsx}' --fix",
"lint-staged": "lint-staged"
},
"dependencies": {
"@mdx-js/react": "1.6.22",
"@octokit/graphql": "4.8.0",
"@plaiceholder/base64": "1.0.0",
"@tailwindcss/typography": "0.5.2",
"autoprefixer": "10.3.1",
"clsx": "1.1.1",
"docx": "7.3.0",
"docx-react": "1.0.5",
"framer-motion": "3.10.6",
"gray-matter": "4.0.3",
"image-size": "1.0.0",
"katex": "0.15.1",
"luxon": "2.1.1",
"next": "12.1.0",
"next-mdx-remote": "3.0.8",
"next-seo": "4.26.0",
"postcss": "8.4.3",
"preact": "10.5.14",
"prism-react-renderer": "1.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "6.15.8",
"react-icons": "4.2.0",
"rehype-katex": "6.0.2",
"remark-math": "5.1.1",
"remark-unwrap-images": "3.0.1",
"sharp": "0.29.0",
"tailwind-styled-components": "2.1.6",
"tailwindcss": "3.0.23",
"unified": "10.1.0",
"unist-util-visit": "2.0.3",
"vfile": "5.2.0",
"yaml": "1.10.2"
},
"devDependencies": {
"@babel/core": "7.15.0",
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@types/gtag.js": "0.0.8",
"@types/luxon": "2.0.7",
"@types/node": "14.17.34",
"@types/react": "17.0.18",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-loader": "8.2.2",
"babel-preset-react-app": "10.0.0",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "4.3.8",
"lint-staged": "11.1.2",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"prettier-plugin-tailwindcss": "0.1.8",
"rehype": "12.0.0",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.5.2",
"whatwg-fetch": "3.6.2"
},
"prettier": {
"trailingComma": "all",
"semi": true,
"singleQuote": true,
"printWidth": 100,
"proseWrap": "always",
"tabWidth": 2
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}