-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.75 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.75 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "hyperdocs",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn remove-cli && next build",
"build-dev": "next build",
"remove-cli": "rm -rf cli/",
"start": "next start",
"lint": "next lint",
"format": "npx prettier --write \"**/*.{js,ts,jsx,tsx,json,css,md,html}\"",
"prebuild": "prisma generate",
"prepare": "husky install"
},
"dependencies": {
"@codesandbox/sandpack-react": "^0.13.15",
"@hookform/devtools": "^4.0.2",
"@hookform/resolvers": "^2.8.8",
"@next-auth/prisma-adapter": "^1.0.1",
"@pondorasti/remark-img-links": "^1.0.8",
"@prisma/client": "^3.9.2",
"@radix-ui/react-avatar": "^0.1.3",
"@radix-ui/react-dialog": "^0.1.5",
"@radix-ui/react-dropdown-menu": "^0.1.4",
"@types/git-url-parse": "^9.0.1",
"axios": "^0.25.0",
"canvas-confetti": "^1.5.1",
"clsx": "^1.1.1",
"date-fns": "^2.28.0",
"esbuild": "^0.14.20",
"framer-motion": "^6.2.4",
"git-url-parse": "^12.0.0",
"lodash.truncate": "^4.4.2",
"markdown-toc": "^1.2.0",
"mdx-bundler": "^8.0.1",
"next": "^12.1.0",
"next-auth": "^4.1.2",
"next-seo": "^5.1.0",
"next-themes": "^0.0.15",
"octokit": "^1.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-hook-form": "^7.26.0",
"react-hot-toast": "^2.2.0",
"react-rough-notation": "^1.0.1",
"react-stars": "^2.2.5",
"react-textarea-autosize": "^8.3.3",
"react-tiny-tooltip": "^0.0.7",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.0.3",
"rehype-highlight": "^5.0.2",
"rehype-slug": "^5.0.1",
"remark-gfm": "^3.0.1",
"remark-remove-comments": "^0.2.0",
"remarkable": "^2.0.1",
"snarkdown": "^2.0.0",
"swr": "^1.2.1",
"tiny-invariant": "^1.2.0",
"use-link-prefetch": "^0.1.1",
"use-web3forms": "^1.2.1",
"zod": "^3.11.6"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.1",
"@types/canvas-confetti": "^1.4.2",
"@types/lodash.truncate": "^4.4.6",
"@types/node": "17.0.14",
"@types/react": "17.0.38",
"@types/react-stars": "^2.2.1",
"@types/remarkable": "^2.0.3",
"autoprefixer": "^10.4.2",
"eslint": "8.8.0",
"eslint-config-next": "12.0.10",
"husky": "^7.0.4",
"hyperdocs-cli": "^0.0.5",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"pretty-quick": "^3.1.3",
"prisma": "^3.9.2",
"tailwindcss": "^3.0.18",
"typescript": "4.5.5",
"yarn": "^1.22.19"
},
"prettier": {
"arrowParens": "always",
"jsxBracketSameLine": true,
"jsxSingleQuote": true,
"singleQuote": true,
"bracketSpacing": true,
"semi": true,
"useTabs": false,
"tabWidth": 2
}
}