-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 804 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 804 Bytes
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
{
"name": "twitter-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"docker:dev": "docker compose up --remove-orphans",
"docker:dev:bg": "docker compose up -d",
"docker:down": "docker compose down",
"docker:clean": "docker compose down -v",
"db:seed": "node scripts/seed.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"mongoose": "^8.4.0",
"next": "^14.2.5",
"next-auth": "^4.24.7",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"autoprefixer": "^10.4.19",
"eslint": "^8",
"eslint-config-next": "^14.2.5",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4"
}
}