forked from training-program/netflixroulette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.74 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "training_project",
"version": "0.0.1",
"description": "Movie selection assistant",
"main": "src/index.tsx",
"scripts": {
"start": "next start",
"dev": "next dev",
"build": "next build",
"prettier": "prettier --write src/**/*.tsx src/**/*.ts",
"lint": "eslint --cache src/**/*.tsx src/**/*.ts",
"prepare": "husky install",
"test": "jest",
"cypress:open": "cypress open",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "https://github.com/Donnevtis",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "1.9.1",
"classnames": "2.3.2",
"formik": "2.2.9",
"next": "13.2.4",
"normalize.css": "8.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.0.5",
"react-router-dom": "6.5.0",
"redux": "4.2.0",
"redux-thunk": "2.4.2"
},
"devDependencies": {
"@babel/core": "7.16.12",
"@babel/eslint-parser": "7.16.5",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.16.7",
"@bbbtech/storybook-formik": "2.5.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.10",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/addons": "6.5.16",
"@storybook/builder-webpack5": "6.5.16",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/preset-scss": "1.0.3",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "0.0.13",
"@storybook/theming": "6.5.16",
"@swc/core": "1.3.36",
"@swc/jest": "0.2.24",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "29.2.4",
"@types/react": "17.0.38",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"autoprefixer": "10.4.13",
"babel-jest": "29.3.1",
"babel-loader": "8.2.3",
"concurrently": "7.6.0",
"copy-webpack-plugin": "10.2.0",
"css-loader": "6.5.1",
"css-minimizer-webpack-plugin": "3.3.1",
"cypress": "12.6.0",
"eslint": "8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "16.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-webpack-plugin": "3.1.1",
"fork-ts-checker-webpack-plugin": "7.0.0",
"html-webpack-plugin": "5.5.0",
"husky": "7.0.4",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"lint-staged": "12.3.2",
"mini-css-extract-plugin": "2.4.5",
"msw": "1.0.1",
"next-router-mock": "0.9.3",
"postcss": "8.4.21",
"postcss-loader": "7.0.2",
"postcss-nested": "6.0.1",
"postcss-preset-env": "8.0.1",
"postcss-scss": "4.0.6",
"prettier": "2.5.1",
"react-refresh": "0.14.0",
"react-refresh-typescript": "2.0.8",
"react-test-renderer": "18.2.0",
"sass": "1.45.2",
"sass-loader": "12.4.0",
"style-loader": "3.3.1",
"tailwindcss": "3.2.7",
"ts-loader": "9.4.2",
"typescript": "4.9.4",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1",
"whatwg-fetch": "3.6.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": "eslint --cache --fix",
"src/**/*.{js,css,md}": "prettier --write"
}
}