-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.54 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.54 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
{
"name": "dsc-blog-frontend",
"version": "0.1.0",
"private": true,
"description": "DSC Blog Frontend",
"author": "nyatinte <takumi.062757@gmail.com> (https://github.com/nyatinte/)",
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:ycu-engine/DSC-Blog-Frontend.git"
},
"scripts": {
"dev": "next dev",
"dev:db": "docker compose up -d && pnpm run prisma:generate",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ci:setup": "pnpm install && pnpm run prisma:generate && pnpm run gqlgen:server && pnpm run gqlgen:client",
"format:fix": "prettier -w .",
"format:check": "prettier -c .",
"lint:fix": "eslint --fix .",
"lint:check": "eslint .",
"type-check": "tsc --noEmit",
"shadcn-add": "npx shadcn-ui@latest add",
"gqlgen:server": "graphql-codegen -c src/server/codegen.ts",
"gqlgen:client": "graphql-codegen -c src/codegen.ts",
"prisma:generate": "prisma generate --schema src/server/prisma/schema.prisma",
"prisma:migrate": "prisma migrate dev --schema src/server/prisma/schema.prisma",
"prisma:studio": "prisma studio --schema src/server/prisma/schema.prisma",
"prisma:seed": "prisma db seed --schema src/server/prisma/schema.prisma"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} src/server/prisma/seed.ts"
},
"dependencies": {
"@apollo/client": "^3.8.3",
"@devoxa/prisma-relay-cursor-connection": "^3.1.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@prisma/client": "5.3.1",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@t3-oss/env-nextjs": "^0.6.1",
"@types/mdast": "^4.0.0",
"@types/node": "20.4.5",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"eslint-config-next": "13.4.12",
"graphql": "^16.8.0",
"graphql-yoga": "^4.0.4",
"lucide-react": "^0.263.1",
"mdast-util-directive": "^3.0.0",
"next": "13.4.12",
"postcss": "8.4.27",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.2",
"react-hot-toast": "^2.4.1",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.3",
"rehype-react": "^7.2.0",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.3",
"remark-directive": "^2.0.1",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-plain-text": "^0.2.0",
"remark-rehype": "^10.1.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.6",
"typescript": "5.1.6",
"unified": "^10.1.2",
"unist-util-visit": "^5.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@eddeee888/gcg-typescript-resolver-files": "^0.7.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@tsconfig/strictest": "^2.0.1",
"@types/unist": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-jsdoc": "^46.4.5",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^3.0.0",
"markuplint": "^3.12.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"prisma": "^5.3.1",
"ts-node": "^10.9.1"
},
"volta": {
"node": "20.2.0"
}
}