-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
94 lines (94 loc) · 2.68 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
{
"name": "personal-site",
"description": "A website to show off some of my projects",
"version": "1.0.0",
"private": true,
"author": "https://www.github.com/mah51",
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"typescript"
],
"scripts": {
"dev": "next",
"debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "1.0.15",
"@chakra-ui/react": "1.6.7",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mapbox/rehype-prism": "0.7.0",
"@mdx-js/loader": "2.1.5",
"@next/mdx": "11.1.2",
"cross-env": "7.0.3",
"date-fns": "2.23.0",
"firebase-admin": "11.0.1",
"framer-motion": "^4.1.17",
"gray-matter": "4.0.3",
"mdx-prism": "0.3.4",
"next-mdx-remote": "3.0.4",
"next-plausible": "2.1.1",
"next-seo": "4.27.0",
"react": "17.0.2",
"react-awesome-reveal": "3.8.1",
"react-dom": "17.0.2",
"react-ga": "3.3.0",
"react-hotkeys-hook": "3.4.0",
"react-icons": "4.2.0",
"react-palette": "1.0.2",
"react-query": "3.23.2",
"react-text-transition": "1.3.0",
"reading-time": "1.5.0",
"remark-autolink-headings": "7.0.1",
"remark-code-titles": "0.1.2",
"remark-slug": "7.0.0",
"vcards-js": "2.10.0"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "7.14.5",
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@types/node": "16.9.2",
"@types/react": "17.0.21",
"@types/react-dom": "17.0.9",
"@typescript-eslint/eslint-plugin": "4.31.1",
"@typescript-eslint/parser": "4.31.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-config": "0.3.0",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.25.1",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "7.0.2",
"next": "12.1.0",
"prettier": "2.4.1",
"rehype": "12.0.0",
"typescript": "4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "npx next lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}