mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-01 15:25:05 -05:00
57 lines
1.7 KiB
JSON
57 lines
1.7 KiB
JSON
{
|
|
"name": "sendou.ink",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"migrate:save": "npx prisma migrate save --name init --experimental",
|
|
"migrate:up": "npx prisma migrate up --experimental",
|
|
"studio": "npx prisma studio",
|
|
"gen:prisma": "npx prisma generate",
|
|
"gen:nexus": "ts-node --transpile-only -P nexus.tsconfig.json pages/api",
|
|
"gen:codegen": "graphql-codegen --config codegen.yml",
|
|
"seed": "ts-node prisma/seed.ts",
|
|
"prettier": "prettier --write .",
|
|
"cypress:open": "cypress open"
|
|
},
|
|
"dependencies": {
|
|
"@apollo/client": "^3.2.5",
|
|
"@chakra-ui/core": "^1.0.0-rc.5",
|
|
"@chakra-ui/theme-tools": "^1.0.0-rc.5",
|
|
"@hookform/resolvers": "^1.0.0",
|
|
"@nexus/schema": "^0.16.0",
|
|
"@prisma/client": "^2.9.0",
|
|
"apollo-server-micro": "^2.18.2",
|
|
"graphql": "^15.3.0",
|
|
"next": "^9.5.5",
|
|
"next-auth": "^3.1.0",
|
|
"next-google-fonts": "^1.2.1",
|
|
"next-images": "^1.6.0",
|
|
"nexus-plugin-prisma": "^0.22.0",
|
|
"react": "^16.14.0",
|
|
"react-dom": "^16.14.0",
|
|
"react-hook-form": "^6.9.5",
|
|
"react-icons": "^3.11.0",
|
|
"react-markdown": "^5.0.0",
|
|
"react-string-replace": "^0.4.4",
|
|
"validator": "^13.1.17",
|
|
"zod": "^1.11.9"
|
|
},
|
|
"devDependencies": {
|
|
"@graphql-codegen/cli": "1.18.0",
|
|
"@graphql-codegen/typescript": "1.17.11",
|
|
"@graphql-codegen/typescript-operations": "1.17.8",
|
|
"@graphql-codegen/typescript-react-apollo": "2.0.7",
|
|
"@prisma/cli": "^2.9.0",
|
|
"@types/next-auth": "^3.1.14",
|
|
"@types/react": "^16.9.53",
|
|
"@types/validator": "^13.1.0",
|
|
"cypress": "^5.4.0",
|
|
"prettier": "^2.1.2",
|
|
"ts-node": "^9.0.0",
|
|
"typescript": "^4.0.3"
|
|
}
|
|
}
|