-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 2.76 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "next-js-movie-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"test": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage --no-watch",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"prepare": "husky install",
"pre-commit": "lint-staged",
"pre-push": "npm run test:ci",
"ts": "tsc --noEmit --incremental"
},
"dependencies": {
"@testing-library/react": "^12.1.2",
"@types/mongoose": "^5.10.5",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.4.1",
"bcryptjs": "^2.4.3",
"clsx": "^1.2.1",
"formik": "^2.2.9",
"jest": "^29.4.1",
"jest-cli": "^29.5.0",
"jest-environment-jsdom": "^29.4.1",
"lodash": "^4.17.21",
"movie-trailer": "^3.0.0",
"next": "12.3.1",
"next-auth": "^4.18.8",
"node-fetch": "^2.6.1",
"react": "17.0.2",
"react-dom": "^17.0.2",
"react-dropzone": "^14.2.3",
"react-icons": "^4.8.0",
"react-image-file-resizer": "^0.4.8",
"react-infinite-scroll-component": "^6.1.0",
"react-loading-skeleton": "^3.1.1",
"react-query": "^3.39.3",
"react-toastify": "^9.1.1",
"react-youtube": "^10.1.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss": "^3.2.4",
"uuidv4": "^6.2.13",
"yup": "^0.32.11"
},
"devDependencies": {
"@next-auth/mongodb-adapter": "^1.1.1",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/bcryptjs": "^2.4.2",
"@types/node": "18.11.18",
"@types/node-fetch": "^2.6.1",
"@types/react": "^18.0.1",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.0",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^13.0.3",
"mongodb": "^4.13.0",
"mongoose": "^5.10.19",
"postcss": "^8.4.21",
"postcss-nesting": "^11.0.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:ci"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --cache --fix --max-warnings=0 --no-ignore"
],
"*.{html,md,mdx}": [
"prettier --write"
]
}
}