-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.68 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
{
"name": "blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ts-lint": "tsc -noEmit -incremental -watch"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@graphcms/rich-text-react-renderer": "^0.6.1",
"@graphcms/utils": "^1.1.0",
"@mdx-js/loader": "^2.1.3",
"@next-auth/prisma-adapter": "^1.0.4",
"@next/mdx": "^12.3.0",
"@prisma/client": "4.3.1",
"date-fns": "^2.29.2",
"graphql": "^16.6.0",
"graphql-request": "^4.3.0",
"next": "12.3.1",
"next-auth": "^4.10.3",
"next-mdx-remote": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@graphcms/rich-text-types": "^0.5.0",
"@graphql-eslint/eslint-plugin": "^3.10.7",
"@tailwindcss/typography": "^0.5.7",
"@types/highlightjs": "^9.12.2",
"@types/luxon": "^2.3.2",
"@types/node": "18.0.4",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.7",
"classnames": "^2.3.1",
"eslint": "8.19.0",
"eslint-config-next": "12.2.2",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prisma": "4.3.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.1.0",
"rehype-prism-plus": "^1.5.0",
"rehype-slug": "^5.0.1",
"remark-gfm": "^3.0.1",
"tailwindcss": "^3.1.6",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
}
}