-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "next-moviez",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"codequality": "pnpm format && pnpm lint && pnpm typecheck",
"codequality:fix": "pnpm format:fix && pnpm lint:fix && pnpm typecheck",
"dev": "next dev",
"format": "prettier --check --ignore-unknown .",
"format:fix": "prettier --write --ignore-unknown .",
"lint": "next lint --max-warnings 0",
"lint:fix": "next lint --fix --max-warnings 0",
"prepare": "husky",
"start": "next start",
"typecheck": "tsc",
"unused": "knip",
"updates": "npm-check-updates -i"
},
"dependencies": {
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^5.15.19",
"@mui/material": "^5.15.19",
"@mui/utils": "^6.2.0",
"@next/third-parties": "^15.1.0",
"lodash": "^4.17.21",
"next": "^15.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-infinite-scroll-hook": "^5.0.1",
"server-only": "^0.0.1",
"swr": "^2.2.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"eslint": "^9.16.0",
"eslint-config-next": "^15.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-unicorn": "^56.0.1",
"husky": "^9.1.7",
"knip": "^5.40.0",
"lint-staged": "^15.2.11",
"npm-check-updates": "^17.1.11",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"packageManager": "pnpm@9.15.0"
}