-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "braianvaylet-website-blog",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:ts": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:ts:fix": "npm run lint:ts --fix",
"husky:init": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.3",
"@emotion/react": "11",
"@emotion/styled": "11",
"boar-design": "^0.1.1",
"date-fns": "^2.23.0",
"framer-motion": "5",
"gray-matter": "^4.0.3",
"mdx-prism": "^0.3.4",
"next": "12.0.7",
"next-mdx-remote": "^3.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-responsive-carousel": "^3.2.23",
"reading-time": "^1.5.0",
"rehype": "^12.0.0",
"remark-code-titles": "^0.1.2",
"remark-parse": "^10.0.0",
"remark-slug": "^7.0.0"
},
"devDependencies": {
"@types/node": "17.0.6",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^7.32.0",
"eslint-config-next": "12.0.7",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.28.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"next-sitemap": "^1.6.160",
"typescript": "4.5.4"
},
"lint-staged": {
"**/*.{js, jsx, ts, tsx}": [
"eslint --cache --fix"
]
}
}