-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.11 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": "prisma-nextjs-rsc",
"version": "0.1.0",
"private": true,
"homepage": "https://hyochan.dev",
"scripts": {
"dev:next": "next dev",
"dev": "concurrently \"yarn dev:next\" \"tailwindcss --input ./styles/root.css --output ./styles/output.css --watch\"",
"build": "tailwindcss ./styles/root.css --output ./styles/output.css && yarn generate:prisma && next build",
"export": "next export",
"start": "next start",
"lint": "next lint && yarn eslint",
"eslint": "eslint --ext .ts,.tsx,.js,.jsx src server app",
"seed": "dotenv -e .env.local -- prisma db seed",
"migrate:dev": "dotenv -e .env.local -- prisma migrate dev",
"migrate:prod": "dotenv -e .env.prod -- prisma migrate deploy",
"generate:prisma": "prisma generate",
"generate:codegen": "graphql-codegen-esm --config codegen.ts",
"generate": "yarn generate:prisma && yarn generate:codegen",
"test": "vitest"
},
"dependencies": {
"@apollo/server": "^4.7.5",
"@as-integrations/next": "^2.0.1",
"@crello/react-lottie": "^0.0.11",
"@formatjs/intl-localematcher": "^0.4.0",
"@primer/octicons-react": "^19.4.0",
"@prisma/client": "^4.16.1",
"axios": "^1.4.0",
"clsx": "^1.2.1",
"flowbite-react": "^0.4.9",
"graphql": "^16.7.1",
"graphql-import": "^1.0.2",
"graphql-middleware": "^6.1.34",
"graphql-tag": "^2.12.6",
"negotiator": "^0.6.3",
"next": "v13.4.7",
"next-auth": "^4.22.1",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-hamburger-menu": "^1.2.1",
"react-hook-form": "^7.45.1",
"react-simple-snackbar": "^1.1.11",
"server-only": "^0.0.1",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@dooboo/eslint-config-react": "^1.2.2",
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/typed-document-node": "^5.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-resolvers": "^4.0.1",
"@svgr/webpack": "^8.0.1",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/react": "^14.0.0",
"@types/negotiator": "^0.6.1",
"@types/node": "^20.3.2",
"@types/react": "18.2.14",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "18.2.6",
"@types/react-hamburger-menu": "^0.0.4",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/coverage-v8": "^0.32.2",
"autoprefixer": "^10.4.14",
"commitlint-plugin-function-rules": "^2.0.2",
"concurrently": "^8.2.0",
"dotenv-cli": "^7.2.1",
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.7",
"flatten-tailwindcss-theme": "^1.0.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"next-pwa": "^5.6.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prisma": "^4.16.1",
"tailwind-merge": "^1.13.2",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "5.0.4",
"vitest": "^0.32.2"
},
"prisma": {
"seed": "ts-node --transpile-only ./prisma/seed.ts"
},
"packageManager": "yarn@3.6.0"
}