-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.84 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
{
"engines": {
"node": ">=14.x"
},
"name": "disney-plus-clone",
"version": "2.0.5",
"private": true,
"author": "Patrick Tran",
"scripts": {
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf package-lock.json",
"clean": "rimraf build dist",
"build": "cross-env GENERATE_SOURCEMAP=false craco build",
"dev": "env-cmd -e dev craco start",
"qa": "env-cmd -e qa craco start",
"test": "craco test",
"eject": "react-scripts eject",
"lint:eslint": "eslint --max-warnings 0 --ext .js,.jsx,.ts,.tsx src/",
"lint:prettier": "prettier --check \"*/**/*.{css,js,jsx,md,sass,ts,tsx}\"",
"lint": "npm run lint:eslint && npm run lint:prettier",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@craco/craco": "6.4.3",
"@react-hook/window-scroll": "1.3.0",
"@reduxjs/toolkit": "1.8.0",
"classnames": "2.3.1",
"lodash.throttle": "4.1.1",
"re-reselect": "4.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intersection-observer": "8.32.1",
"react-query": "3.38.1",
"react-redux": "7.2.8",
"react-router-dom": "6.3.0",
"react-scripts": "4.0.2",
"react-slick": "0.28.1",
"redux": "4.2.0",
"redux-logger": "3.0.6",
"redux-observable": "2.0.0",
"rxjs": "7.4.0",
"shaka-player": "3.3.4",
"shaka-player-ui-controls": "1.0.8",
"slick-carousel": "1.8.1",
"styled-components": "5.2.1",
"styled-reset": "4.3.4",
"web-vitals": "1.0.1"
},
"devDependencies": {
"@storybook/addon-actions": "6.3.8",
"@storybook/addon-essentials": "6.3.8",
"@storybook/addon-links": "6.3.8",
"@storybook/node-logger": "6.3.8",
"@storybook/preset-create-react-app": "3.2.0",
"@storybook/react": "6.3.8",
"@testing-library/jest-dom": "5.11.4",
"@testing-library/react": "11.1.0",
"@testing-library/user-event": "12.1.10",
"@types/jest": "26.0.15",
"@types/lodash.throttle": "4.1.6",
"@types/node": "14.6.0",
"@types/react": "17.0.24",
"@types/react-dom": "17.0.9",
"@types/react-redux": "7.1.18",
"@types/react-router-dom": "5.3.2",
"@types/react-slick": "0.23.5",
"@types/redux-logger": "3.0.9",
"@types/styled-components": "5.1.15",
"circular-dependency-plugin": "5.2.2",
"cross-env": "7.0.3",
"env-cmd": "10.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"jest-styled-components": "7.0.5",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"typescript": "4.4.2",
"webpack-bundle-analyzer": "4.4.2"
},
"cracoConfig": "config/craco.config.js",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}