forked from iron-fish/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.52 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
{
"name": "website-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/next-js": "^2.1.2",
"@chakra-ui/react": "^2.5.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mdx-js/react": "^2.3.0",
"@react-hook/resize-observer": "^1.2.6",
"@types/node": "18.15.11",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"date-fns": "^2.29.3",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"feed": "^4.2.2",
"framer-motion": "^10.12.2",
"jsonp": "^0.2.1",
"lodash-es": "^4.17.21",
"next": "13.3.0",
"next-sitemap": "^4.0.9",
"nextjs-google-analytics": "^2.3.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-intl": "^6.4.0",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"typescript": "5.0.4",
"ua-parser-js": "^1.0.35",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@chakra-ui/cli": "^2.3.0",
"@types/jsonp": "^0.2.1",
"@types/lodash-es": "^4.17.7",
"@types/ua-parser-js": "^0.7.36",
"gray-matter": "^4.0.3",
"husky": ">=6",
"lint-staged": ">=10",
"next-mdx-remote": "^4.4.1",
"prettier": "^2.8.7"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}