-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.57 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.57 KB
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
{
"name": "codebycorey.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run build:next && npm run build:rss && npm run build:sitemap",
"build:next": "next build",
"build:rss": "cross-env NODE_OPTIONS='--experimental-json-modules' node ./scripts/generate-rss.mjs",
"build:sitemap": "cross-env NODE_OPTIONS='--experimental-json-modules' node ./scripts/generate-sitemap.mjs",
"lint": "next lint",
"start": "next start",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@sentry/nextjs": "^6.18.1",
"@supabase/supabase-js": "^1.31.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "^10.4.1",
"date-fns": "^2.28.0",
"fathom-client": "^3.2.0",
"feed": "^4.2.2",
"globby": "^12.0.2",
"gray-matter": "^4.0.3",
"mdx-prism": "^0.3.4",
"next": "^12.1.0",
"next-mdx-remote": "^3.0.8",
"next-seo": "^4.28.1",
"next-themes": "0.0.15",
"postcss": "^8.4.5",
"prism-themes": "^1.9.0",
"prismjs": "^1.25.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reading-time": "^1.5.0",
"rehype": "^12.0.0",
"swr": "^1.1.2",
"tailwindcss": "^3.0.8"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@next/bundle-analyzer": "^12.0.7",
"@storybook/addon-a11y": "^6.4.19",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "0.0.9",
"@types/node": "^17.0.6",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-loader": "^8.2.3",
"cross-env": "^7.0.3",
"eslint": "8.6.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-storybook": "^0.5.7",
"prettier": "^2.5.1",
"typescript": "^4.5.4",
"webpack": "^5.69.1"
},
"volta": {
"node": "14.18.2",
"yarn": "1.22.17"
}
}