felia/apps/name-generator/package.json

42 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2022-12-02 22:42:02 +00:00
{
"name": "@acme/name-generator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"clean": "rm -rf .next .turbo node_modules",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
2022-12-18 06:35:39 +00:00
"@acme/api": "workspace:*",
"@acme/auth": "workspace:*",
"@acme/db": "workspace:*",
"@acme/tailwind-config": "workspace:*",
2022-12-02 22:42:02 +00:00
"@tanstack/react-query": "^4.16.1",
"@trpc/client": "^10.1.0",
"@trpc/next": "^10.1.0",
"@trpc/react-query": "^10.1.0",
"@trpc/server": "^10.1.0",
"next": "^13.0.5",
"next-auth": "^4.17.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"zod": "^3.18.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"autoprefixer": "^10.4.13",
"eslint": "^8.28.0",
"eslint-config-next": "13.0.4",
"postcss": "^8.4.19",
"tailwindcss": "^3.2.4",
2022-12-21 00:12:55 +00:00
"typescript": "^4.9.3",
"@acme/tsconfig": "workspace:*"
2022-12-02 22:42:02 +00:00
}
}