-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.35 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
{
"name": "movie-stack-frontend",
"version": "1.0.0",
"description": "Client view of Movie Stack Apps",
"main": "page/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/devinekadeni/movie-stack_FE.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/devinekadeni/movie-stack_FE/issues"
},
"homepage": "https://github.com/devinekadeni/movie-stack_FE#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint-all": "eslint . --ext ts --ext tsx --ext js",
"prettify-all": "prettier --write .",
"type-check": "tsc --pretty --noEmit",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"dependencies": {
"@apollo/client": "^3.3.20",
"@hookform/resolvers": "^2.5.2",
"@material-ui/core": "^4.11.4",
"@material-ui/styles": "^4.11.4",
"axios": "^0.21.1",
"date-fns": "^2.22.1",
"graphql": "^15.5.0",
"next": "^10.2.3",
"react": "^17.0.2",
"react-content-loader": "^6.0.3",
"react-dom": "^17.0.2",
"react-hook-form": "^7.8.3",
"react-i18next": "^11.10.0",
"react-player": "^2.9.0",
"react-responsive-carousel": "^3.2.18",
"styled-components": "^5.3.0",
"styled-icons": "^10.34.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.13.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@types/styled-components": "^5.1.10",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-plugin-styled-components": "^1.12.0",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"jest-next-dynamic": "^1.0.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"typescript": "^4.3.2"
}
}