-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.14 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
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export && env NODE_ENV='production' next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"lint:fix": "next lint --fix",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css}'",
"prepare": "husky install"
},
"devDependencies": {
"@mapbox/rehype-prism": "^0.8.0",
"@radix-ui/react-dialog": "1.0.0",
"@radix-ui/react-dropdown-menu": "1.0.0",
"@radix-ui/react-slot": "1.0.0",
"@tailwindcss/line-clamp": "^0.4.0",
"@types/node": "17.0.35",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"autoprefixer": "^10.4.7",
"babel-plugin-macros": "^3.1.0",
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-testing-library": "^5.5.1",
"eslint-plugin-unused-imports": "^2.0.0",
"framer-motion": "^6.3.16",
"gray-matter": "^4.0.3",
"husky": "^8.0.1",
"next": "12.1.6",
"next-seo": "^5.4.0",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"prism-themes": "^1.9.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.4.0",
"react-share": "^4.4.0",
"rehype": "^12.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",
"rehype-stringify": "^9.0.3",
"remark-autolink-headings": "^7.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"serve": "^14.0.1",
"tailwindcss": "^3.1.4",
"tocbot": "^4.18.2",
"typescript": "4.7.2",
"unified": "^10.1.2",
"zustand": "^4.0.0-rc.1"
},
"dependencies": {
"grommet-icons": "^4.7.0",
"grommet-styles": "^0.2.0",
"sass": "^1.54.4"
}
}