This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
73 lines (73 loc) · 2.21 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
71
72
73
{
"name": "eng-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write src/*.{js,jsx,ts,tsx,md,css} styles/*.css pages/**/*.tsx lib/*.ts content/**/*.{ts,md,mdx}",
"postinstall": "patch-package",
"test:meta": "yarn lt --port 3000",
"export": "next build && next export",
"export:preview": "yarn http-server out",
"post:create": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node -T lib/create-new-post.ts",
"post:edit": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' ts-node -T lib/edit-post.ts"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@jsdevtools/rehype-toc": "^3.0.2",
"@xstate/react": "^2.0.0",
"dayjs": "^1.10.7",
"feed": "^4.2.2",
"framer-motion": "^4",
"fuzzy-search": "^3.2.1",
"gray-matter": "^4.0.3",
"jest": "^27.2.5",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"mdx-embed": "^0.0.22",
"next": "11.1.2",
"next-mdx-remote": "^3.0.4",
"next-seo": "^4.28.1",
"nprogress": "^0.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rehype-autolink-headings": "^6.1.0",
"rehype-external-links": "^1.0.0",
"rehype-slug": "^5.0.0",
"remark-prism": "^1.3.6",
"sass": "^1.42.1",
"uuid": "^8.3.2",
"xstate": "^4.29.0"
},
"devDependencies": {
"@mdx-js/react": "^1.6.22",
"@mdx-js/runtime": "^1.6.22",
"@types/fuzzy-search": "^2.1.1",
"@types/jest": "^27.0.2",
"@types/lodash.omit": "^4.5.6",
"@types/lodash.pick": "^4.4.6",
"@types/prompts": "^2.0.14",
"@types/react": "17.0.24",
"@types/react-dom": "^17.0.9",
"@types/remark-prism": "^1.3.0",
"@types/uuid": "^8.3.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"http-server": "^14.0.0",
"import-jsx": "^4.0.0",
"localtunnel": "^2.0.2",
"patch-package": "^6.4.7",
"prettier": "^2.5.0",
"prompts": "^2.4.2",
"string-strip-html": "^9.1.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.4.0",
"typescript": "4.4.3"
}
}