-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.84 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
{
"name": "ide",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"codegen": "contentful-typescript-codegen --output @types/generated/contentful.d.ts",
"db": "npx prisma db push; npx prisma generate",
"cache-clear": "./node_modules/.bin/contentlayer build --verbose --clearCache",
"vercel-build": "prisma generate && prisma migrate deploy && next build"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.16.2",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@next/font": "^13.1.1",
"@prisma/client": "^5.11.0",
"@react-oauth/google": "^0.5.1",
"@sentry/nextjs": "^7.91.0",
"@tanstack/react-query": "^4.22.0",
"@tanstack/react-query-devtools": "^4.22.0",
"@turf/turf": "^7.0.0",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/react-scroll": "^1.8.6",
"@upstash/qstash": "^0.3.4",
"@vercel/analytics": "^0.1.8",
"@vercel/postgres": "^0.7.2",
"@we-gold/gpxjs": "^1.0.11",
"axios": "^1.2.2",
"chart.js": "^4.4.3",
"contentful": "^9.2.15",
"contentlayer": "^0.3.3",
"dotenv": "^16.0.3",
"draft-convert": "^2.1.13",
"draft-js": "^0.11.7",
"emoji-strip": "^1.0.1",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"gray-matter": "^4.0.3",
"html-react-parser": "^3.0.8",
"ioredis": "^5.2.5",
"iron-session": "^6.3.1",
"jwt-decode": "^3.1.2",
"mapbox-gl": "^3.5.2",
"next": "13.1.1",
"next-contentlayer": "^0.3.3",
"next-cookies": "^2.0.3",
"next-mdx-remote": "^4.4.1",
"node-fetch": "^3.3.0",
"nodemailer": "^6.9.0",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-cookie": "^4.1.1",
"react-dom": "18.2.0",
"react-draft-wysiwyg": "^1.15.0",
"react-dropdown": "^1.11.0",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"react-markdown": "^8.0.4",
"react-scroll": "^1.8.9",
"react-syntax-highlighter": "^15.5.0",
"reflect-metadata": "^0.1.13",
"rehype-pretty-code": "^0.10.0",
"shiki": "^0.14.3",
"typescript": "4.9.4",
"uuid": "^9.0.0",
"washyourmouthoutwithsoap": "^1.0.2",
"zustand": "^4.2.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.8",
"@types/draft-js": "^0.11.10",
"@types/jsonwebtoken": "^9.0.0",
"@types/mailchimp__mailchimp_marketing": "^3.0.19",
"@types/nodemailer": "^6.4.7",
"@types/react-draft-wysiwyg": "^1.13.4",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/uuid": "^9.0.0",
"autoprefixer": "^10.4.13",
"contentful-management": "^10.26.0",
"contentful-typescript-codegen": "^3.4.0",
"postcss": "^8.4.20",
"prisma": "^5.11.0",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1"
}
}