-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.87 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": "kylepeeler.codes",
"version": "1.0.0",
"author": {
"name": "Kyle Peeler",
"email": "[email protected]",
"url": "https://kylepeeler.codes"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kylepeeler/kylepeeler.codes.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{html,json,md,mdx,yml}": [
"prettier --write"
]
},
"dependencies": {
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@octokit/core": "^3.5.1",
"@primer/components": "^22.0.3",
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.3.7",
"contentlayer": "^0.0.26",
"date-fns": "^2.25.0",
"esbuild": "^0.13.8",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"mdx-bundler": "^6.0.2",
"next": "^11.1.3-canary.41",
"next-contentlayer": "^0.0.26",
"next-cookies": "^2.0.3",
"next-mdx-remote": "^2.1.4",
"next-seo": "^4.28.1",
"next-themes": "0.0.15",
"postcss": "^8.3.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.0",
"rehype-code-titles": "^1.0.3",
"rehype-prism-plus": "^1.1.0",
"rehype-slug": "^5.0.0",
"remark": "^12.0.1",
"remark-gfm": "^3.0.0",
"remark-html": "^12.0.0",
"sass": "^1.43.2",
"styled-components": "^5.3.1",
"tailwindcss": "^2.2.17"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@storybook/addon-actions": "^6.4.0-beta.12",
"@storybook/addon-essentials": "^6.4.0-beta.12",
"@storybook/addon-links": "^6.4.0-beta.12",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.4.0-beta.12",
"@types/node": "^16.11.0",
"@types/react": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.7",
"eslint": "^8.0.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^6.3.4",
"husky": "4.3.6",
"lint-staged": "^10.5.4",
"prettier": "^2.4.1",
"react-is": "^17.0.2",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4"
}
}