-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 3.27 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
{
"name": "recommends",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"start:local": "next dev -p 3001 | local-ssl-proxy --key certs/localhost.key --cert certs/localhost.crt --source 3000 --target 3001 ",
"build": "next build",
"format:write": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\"",
"format": "prettier \"**/*.{css,js,json,jsx,ts,tsx}\"",
"start": "next start",
"prebuild": "prisma generate && prisma generate --schema=prisma/mongo_schema.prisma",
"predev": "prisma generate",
"lint": "next lint",
"test": "vitest"
},
"dependencies": {
"@apollo/client": "^3.7.15",
"@auth/core": "^0.7.1",
"@extractus/article-extractor": "^7.2.8",
"@motionone/utils": "^10.15.1",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/font": "13.1.1",
"@noble/hashes": "^1.3.0",
"@prisma/client": "^4.16.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-switch": "^1.0.2",
"@radix-ui/react-toggle-group": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.2",
"@react-pdf/renderer": "^3.1.9",
"@types/body-parser": "^1.19.2",
"@types/js-cookie": "^3.0.3",
"@types/node": "18.11.18",
"@types/nodemailer": "^6.4.8",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@vercel/analytics": "^0.1.6",
"@vercel/og": "^0.0.26",
"@zip.js/zip.js": "^2.7.1",
"ahooks": "^3.7.8",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"cmdk": "^0.1.22",
"crisp-sdk-web": "^1.0.20",
"dayjs": "^1.11.7",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"file-saver": "^2.0.5",
"focus-trap-react": "^10.0.2",
"formik": "^2.2.9",
"framer-motion": "^8.4.2",
"graphql": "^16.6.0",
"i18next": "^23.5.1",
"jotai": "^2.3.1",
"js-cookie": "^3.0.5",
"lemonsqueezy.ts": "^0.1.6",
"lucide-react": "0.105.0-alpha.4",
"micro": "^10.0.1",
"ms": "^2.1.3",
"next": "13.4.1",
"next-auth": "^4.18.8",
"next-i18next": "^14.0.3",
"next-seo": "^5.15.0",
"nodemailer": "^6.9.3",
"ofetch": "^1.0.1",
"openai": "^3.2.0",
"podcast-api": "^2.0.2",
"prop-types": "^15.8.1",
"query-string": "^8.1.0",
"react": "18.2.0",
"react-aria": "^3.27.0",
"react-confetti": "^6.1.0",
"react-dom": "18.2.0",
"react-i18next": "^13.2.2",
"react-markdown": "^8.0.4",
"react-stately": "^3.25.0",
"react-textarea-autosize": "^8.4.1",
"react-wrap-balancer": "^0.3.0",
"sonner": "^0.3.0",
"swr": "^2.0.3",
"typescript": "4.9.4",
"universal-cookie": "^4.0.4",
"use-clipboard-copy": "^0.2.0",
"use-debounce": "^9.0.3",
"yup": "^1.0.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@types/file-saver": "^2.0.5",
"@types/ms": "^0.7.31",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"local-ssl-proxy": "^2.0.5",
"postcss": "^8.4.21",
"prettier": "^2.8.2",
"prettier-plugin-tailwindcss": "^0.2.1",
"prisma": "^4.16.2",
"scrollyfills": "^1.0.0",
"tailwindcss": "^3.2.4",
"vitest": "^0.30.1"
}
}