-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 888 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 888 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
33
34
35
36
37
{
"name": "netflix-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"ts:check": "tsc --noEmit"
},
"dependencies": {
"axios": "1.7.9",
"clsx": "2.1.1",
"cookies-next": "5.0.2",
"next": "15.2.8",
"react": "19.0.0",
"react-dom": "19.0.0",
"swiper": "11.1.15",
"zustand": "5.0.2"
},
"devDependencies": {
"@types/node": "^20.17.24",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"autoprefixer": "10.4.20",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "9.1.0",
"postcss": "8.4.47",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"tailwindcss": "3.4.14",
"typescript": "^5"
}
}