-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "tweet-archive",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "drizzle-kit generate:sqlite --schema=./src/db/schema.ts",
"db:push": "drizzle-kit push:sqlite"
},
"dependencies": {
"@ariakit/react": "^0.2.17",
"@clerk/nextjs": "4.29.3",
"@libsql/client": "^0.5.6",
"@upstash/ratelimit": "^0.4.3",
"@upstash/redis": "^1.22.0",
"autoprefixer": "10.4.14",
"drizzle-orm": "^0.30.1",
"eslint": "^8.51.0",
"eslint-config-next": "14.1.3",
"match-sorter": "^6.3.1",
"next": "14.1.3",
"next-themes": "^0.2.1",
"postcss": "^8.4.31",
"react": "^18",
"react-dom": "^18",
"react-tweet": "^3.1.1",
"tailwindcss": "3.4.1",
"typescript": "^5",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.20.14",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6"
}
}