-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.55 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next",
"start": "next start",
"build": "contentlayer build && npm run build:lunr && next build",
"build:blog": "npm run build:content && npm run build:lunr",
"build:lunr": "npx tsx build-scripts/lunr-index.ts",
"build:content": "contentlayer build",
"type-check": "tsc",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.7.16",
"@heroicons/react": "^1.0.5",
"@remark-embedder/core": "^2.0.0",
"@remark-embedder/transformer-oembed": "^2.0.0",
"@storybook/cli": "^7.4.5",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.10",
"contentlayer": "^0.3.4",
"copy-webpack-plugin": "^10.2.4",
"eslint-config-next": "^13.4.19",
"gray-matter": "^4.0.3",
"gsap": "^3.12.7",
"lunr": "^2.3.9",
"next": "^13.4.19",
"next-compose-plugins": "^2.2.1",
"next-contentlayer": "^0.3.4",
"next-images": "^1.8.4",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-children-utilities": "^2.7.0",
"react-dom": "^18.2.0",
"react-icons": "^5.4.0",
"react-medium-image-zoom": "^4.3.5",
"react-paginate": "^8.1.3",
"react-spring": "^9.7.3",
"react-syntax-highlighter": "^15.5.0",
"react-tabs": "^3.2.3",
"react-tsparticles": "^1.41.4",
"react-use": "^17.3.2",
"react-vertical-timeline-component": "^3.5.2",
"rehype-autolink-headings": "^6.1.1",
"rehype-img-size": "^1.0.1",
"rehype-parse": "^8.0.4",
"rehype-pretty-code": "^0.10.1",
"rehype-react": "^7.0.4",
"rehype-slug": "^5.0.1",
"rehype-stringify": "^9.0.3",
"remark-behead": "^3.0.0",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-retext": "^5.0.1",
"remark-shiki-twoslash": "^3.0.7",
"remark-stringify": "^10.0.2",
"remark-unwrap-images": "^3.0.1",
"retext-english": "^4.1.0",
"shiki-twoslash": "^3.0.2",
"slash": "^4.0.0",
"strip-markdown": "^5.0.0",
"svg-react-loader": "^0.4.6",
"unified": "^10.1.1",
"unist-util-flat-filter": "^2.0.0",
"unist-util-replace-all-between": "^0.1.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.1.3",
"@storybook/addon-essentials": "^7.4.5",
"@storybook/addon-interactions": "^7.4.5",
"@storybook/addon-links": "^7.4.5",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.4.5",
"@storybook/nextjs": "^7.4.5",
"@storybook/react": "^7.4.5",
"@storybook/testing-library": "^0.2.1",
"@testing-library/react": "^12.1.3",
"@types/jest": "^29.5.4",
"@types/node": "^12.12.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"esbuild-node-loader": "^0.8.0",
"eslint-config-prettier": "^9.0.0",
"esm": "^3.2.25",
"postcss-preset-env": "^7.4.1",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.1.13",
"raw-loader": "^4.0.2",
"sass": "^1.51.0",
"storybook": "^7.4.5",
"tailwindcss": "^3.0.23",
"ts-node": "^10.9.2",
"ts-util-helpers": "^1.0.0",
"tsx": "^4.19.2",
"typescript": "^4.9.5",
"webpack-cli": "^4.9.2"
}
}