-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.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
{
"name": "next-portfolio-ts",
"version": "0.2.0",
"author": {
"name": "Gabriel Hicks",
"email": "[email protected]",
"url": "https://gabrielhicks.dev"
},
"scripts": {
"build": "next build",
"dev": "next",
"lint": "eslint . --ext .json --ext .js --ext .tsx",
"prettier": "prettier --write \"**/*.{html,js,md,yml,tsx}\"",
"start": "next start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{html,js,md,yml}": [
"prettier --write"
]
},
"dependencies": {
"@chakra-ui/icons": "^1.0.0",
"@chakra-ui/react": "^1.0.0",
"@chakra-ui/theme-tools": "1.0.4",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@icons-pack/react-simple-icons": "^3.13.0",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/mdx": "^10.0.5",
"date-fns": "^2.16.1",
"framer-motion": "^2.9.4",
"gray-matter": "^4.0.2",
"mdx-prism": "^0.3.1",
"next": "^10.1.1",
"next-mdx-remote": "^2.1.3",
"next-seo": "^4.17.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.13.1",
"reading-time": "^1.2.1",
"remark-autolink-headings": "^6.0.1",
"remark-code-titles": "^0.1.1",
"remark-slug": "^6.0.0"
},
"license": "MIT",
"devDependencies": {
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"eslint": "^7.16.0",
"eslint-config-kentcdodds": "^17.5.0",
"globby": "^11.0.2",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rehype": "^11.0.0",
"typescript": "4.0.5"
}
}