-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
153 lines (153 loc) · 4.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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "threads-nextjs",
"version": "0.0.1-beta.0",
"private": true,
"description": "Instagram의 새로운 텍스트 앱, Threads에서 더 많은 대화를 나누어보세요",
"keywords": [
"threads",
"instagram",
"clone",
"nextjs",
"prisma",
"trpc",
"tailwindcss",
"typescript",
"authjs"
],
"license": "ISC",
"author": "",
"type": "module",
"scripts": {
"dev": "run-s dev:*",
"dev:cli": "node dist/cli.cjs --env local",
"dev:start": "next",
"start": "next start",
"build": "next build",
"export": "next export",
"fix": "run-p fix:*",
"fix:types": "tsc --noEmit",
"fix:eslint-fix": "dotenv -v SKIP_ENV_VALIDATION=1 next lint --fix",
"fix:prettier-fix": "prettier --write '**/*.{js,jsx,md,ts,tsx}'",
"deploy:dev": "run-s sst:deploy:dev:*",
"sst:deploy:dev:partytown": "partytown copylib public/~partytown",
"sst:deploy:dev:cli": "node dist/cli.cjs --env dev",
"sst:deploy:dev:deploy": "sst deploy",
"sst:dev": "run-s sst:dev:*",
"sst:dev:cli": "node dist/cli.cjs --env local",
"sst:dev:start": "sst dev",
"cli:start": "tsup",
"test": "echo \"Error: no test specified\" && exit 1",
"test:ci": "run-s test:*",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"db:init": "prisma generate",
"db:dev": "prisma migrate dev",
"db:push": "prisma db push",
"db:studio": "prisma studio"
},
"browserslist": [
"extends @anansi/browserslist-config"
],
"dependencies": {
"@auth/core": "^0.29.0",
"@auth/prisma-adapter": "^1.6.0",
"@builder.io/partytown": "^0.10.1",
"@dicebear/collection": "^8.0.1",
"@dicebear/core": "^8.0.1",
"@epic-web/remember": "^1.0.2",
"@hookform/resolvers": "^3.3.4",
"@lexical/html": "^0.14.5",
"@lexical/link": "^0.14.5",
"@lexical/react": "^0.14.5",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.12.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@sentry/nextjs": "^7.110.1",
"@t3-oss/env-nextjs": "^0.9.2",
"@tanstack/react-query": "^5.29.2",
"@tanstack/react-query-devtools": "^5.29.2",
"@tanstack/react-virtual": "^3.3.0",
"@trpc/client": "11.0.0-rc.340",
"@trpc/react-query": "11.0.0-rc.340",
"@trpc/server": "11.0.0-rc.340",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.10",
"lexical": "^0.14.5",
"lodash-es": "^4.17.21",
"lucide-react": "^0.368.0",
"next": "14.2.1",
"next-auth": "5.0.0-beta.16",
"next-themes": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.3",
"server-only": "^0.0.1",
"superjson": "^2.2.1",
"tailwind-merge": "^2.2.2",
"unique-username-generator": "^1.3.0",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@anansi/browserslist-config": "^1.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@playwright/test": "^1.43.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.12",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@testing-library/user-event": "^14.5.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@vercel/style-guide": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"aws-cdk-lib": "2.137.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"constructs": "10.3.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.1",
"eslint-plugin-tailwindcss": "^3.15.1",
"jiti": "^1.21.0",
"jsdom": "^24.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.12.1",
"sst": "^2.41.4",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vite": "^5.2.9",
"vitest": "^1.5.0"
},
"engines": {
"node": ">=18.19.0"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
}
}