-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.74 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.74 KB
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
{
"name": "personal-site",
"description": "A website to show off some of my projects",
"version": "1.0.0",
"private": true,
"author": "https://github.com/eric-lu-VT",
"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.13",
"@chakra-ui/react": "1.6.3",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mapbox/rehype-prism": "0.6.0",
"@mdx-js/loader": "1.6.22",
"@next/mdx": "11.0.0",
"@types/nodemailer": "6.4.4",
"axios": "0.21.1",
"cross-env": "7.0.3",
"date-fns": "2.21.1",
"dotenv": "10.0.0",
"firebase-admin": "9.9.0",
"framer-motion": "^4.1.8",
"gray-matter": "4.0.3",
"mdx-prism": "0.3.3",
"next-mdx-remote": "3.0.2",
"next-plausible": "1.6.1",
"next-seo": "4.24.0",
"nodemailer": "6.6.3",
"react": "17.0.2",
"react-awesome-reveal": "3.7.1",
"react-dom": "17.0.2",
"react-ga": "3.3.0",
"react-hotkeys-hook": "3.3.2",
"react-icons": "4.2.0",
"react-palette": "1.0.2",
"react-query": "3.13.10",
"react-text-transition": "1.3.0",
"reading-time": "1.3.0",
"remark-autolink-headings": "6.0.1",
"remark-code-titles": "0.1.2",
"remark-slug": "6.0.0",
"swr": "1.0.1"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/preset-env": "7.14.5",
"@babel/preset-react": "7.14.5",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@types/node": "15.12.2",
"@types/react": "17.0.11",
"@types/react-dom": "17.0.7",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.28.0",
"eslint-config": "0.3.0",
"eslint-config-next": "11.0.1",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "6.0.0",
"next": "11.0.0",
"prettier": "2.3.1",
"rehype": "11.0.0",
"typescript": "^4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "npx next lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}