-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.75 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "dotcodeschool",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"check": "next lint",
"check:strict": "pnpm check --report-unused-disable-directives-severity \"error\" --no-inline-config",
"lint": "pnpm check --fix",
"lint:strict": "pnpm check:strict --fix",
"fmt": "prettier --write .",
"setup": "node ./lib/utils/contentfulSetup && pnpm gen",
"gen": "DOTENV_CONFIG_PATH=./.env.local graphql-codegen --config codegen.yml --require dotenv/config",
"sort": "sort-json",
"prepare": "husky",
"postinstall": "prisma generate"
},
"dependencies": {
"@auth/mongodb-adapter": "^2.0.9",
"@auth/prisma-adapter": "1.6.0",
"@aws-sdk/client-ses": "^3.782.0",
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@contentful/vercel-nextjs-toolkit": "^1.3.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@monaco-editor/react": "^4.6.0",
"@prisma/client": "^5.22.0",
"@types/lodash": "^4.17.7",
"@vercel/speed-insights": "^1.0.12",
"ansi-to-html": "^0.7.2",
"contentful-import": "^9.4.58",
"date-fns": "^4.1.0",
"esbuild": "^0.25.1",
"esbuild-register": "^3.6.0",
"framer-motion": "^10.16.12",
"gray-matter": "^4.0.3",
"ioredis": "^5.4.1",
"lodash": "^4.17.21",
"lottie-react": "^2.4.0",
"mdx-bundler": "^10.1.1",
"mongodb": "^6.14.2",
"next": "14.2.7",
"next-auth": "5.0.0-beta.20",
"next-mdx-remote": "^5.0.0",
"prism-react-renderer": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-icons": "^4.12.0",
"react-split-pane": "^0.1.92",
"react-syntax-highlighter": "^15.6.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.2",
"rehype-mdx-code-props": "^3.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"strip-comments": "^2.0.1",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.9",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.11",
"@stylistic/eslint-plugin-ts": "^2.8.0",
"@types/aws-lambda": "^8.10.148",
"@types/diff": "^7.0.2",
"@types/mdx": "^2.0.13",
"@types/node": "^20",
"@types/react": "^18.3.12",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18",
"@types/react-lottie": "^1.2.10",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/strip-comments": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"diff": "^7.0.0",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-filename-rules": "^1.3.1",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-no-secrets": "^1.0.2",
"eslint-plugin-prefer-arrow-functions": "^3.4.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.3.0",
"graphql": "^16.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.2",
"prisma": "^5.22.0",
"sort-json": "^2.0.1",
"typescript": "^5.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}