forked from onderonur/next-moviez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "tmdb-explorer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"typecheck": "tsc --noEmit",
"lint": "next lint --fix --dir pages --dir src"
},
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/is-prop-valid": "^1.1.2",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.6.4",
"lodash": "^4.17.21",
"next": "^12.1.6",
"next-seo": "^5.4.0",
"nookies": "^2.5.2",
"nprogress": "^0.2.0",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-full-screen": "^1.1.0",
"react-hotkeys": "^2.0.0",
"react-infinite-scroll-hook": "^4.0.3",
"react-query": "^3.38.1",
"swiper": "^8.1.4"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.31",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.44",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.15.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint"
]
}
}