-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.99 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
{
"name": "saas",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"stripe-webhook": "stripe listen --load-from-webhooks-api --forward-to localhost:3000"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@contentlayer/core": "^0.2.9",
"@editorjs/code": "^2.8.0",
"@editorjs/editorjs": "^2.26.2",
"@editorjs/embed": "^2.5.3",
"@editorjs/header": "^2.7.0",
"@editorjs/inline-code": "^1.4.0",
"@editorjs/link": "^2.5.0",
"@editorjs/list": "^1.8.0",
"@editorjs/table": "^2.1.2",
"@headlessui/react": "^1.7.5",
"@headlessui/tailwindcss": "^0.1.2",
"@heroicons/react": "^2.0.13",
"@hookform/resolvers": "^2.9.10",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.7.1",
"@radix-ui/react-dropdown-menu": "^2.0.1",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.8",
"@tremor/react": "^1.2.3",
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.11.14",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"@types/stripe-v3": "^3.1.27",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@vercel/og": "^0.0.21",
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"clsx": "^1.2.1",
"contentlayer": "^0.2.9",
"crypto-js": "^4.1.1",
"date-fns": "^2.29.3",
"eslint": "8.29.0",
"eslint-config-next": "13.0.6",
"eslint-plugin-editorconfig": "^4.0.2",
"loglevel": "^1.8.1",
"loglevel-plugin-prefix": "^0.8.4",
"markdown-wasm": "^1.2.0",
"micro": "^10.0.1",
"next": "13.0.6",
"next-auth": "^4.18.3",
"next-contentlayer": "^0.2.9",
"next-themes": "^0.2.1",
"postcss": "^8.4.19",
"prisma": "^4.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.40.0",
"react-hot-toast": "^2.4.0",
"react-textarea-autosize": "^8.4.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.5.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"shiki": "^0.11.1",
"stripe": "^11.3.0",
"tailwind-merge": "^1.8.0",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"zod": "^3.19.1"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"babel-loader": "^8.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-storybook": "^0.6.8",
"tsconfig-paths-webpack-plugin": "^4.0.0"
}
}