-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.29 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
{
"name": "webpack-config",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "yarn run dev",
"dev": "webpack",
"server": "webpack-dev-server",
"watch": "webpack --watch",
"prod": "cross-env NODE_ENV=production webpack",
"lint:write": "eslint src/*.jsx --fix",
"lint-staged": "lint-staged",
"lint": "eslint --ext .js --ext .jsx src --quiet",
"lint-fix": "eslint --et .js --ext .jsx src --quiet --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [
"react",
"js",
"chat"
],
"author": "Yuschyk Yura",
"license": "ISC",
"dependencies": {
"@babel/core": "7.13.1",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-private-methods": "7.13.0",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.13.5",
"@babel/preset-react": "7.12.13",
"@material-ui/core": "4.11.3",
"@storybook/addon-a11y": "^6.2.8",
"@storybook/addon-console": "^1.2.3",
"axios": "^0.21.1",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"babel-runtime": "^6.26.0",
"browserlist": "1.0.1",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "6.4.1",
"cross-env": "^7.0.3",
"css-loader": "4.2.2",
"emoji-mart": "^3.0.1",
"eslint": "7.8.1",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "24.0.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"file-loader": "6.1.0",
"formik": "^2.2.6",
"global": "^4.4.0",
"html-webpack-plugin": "4.4.1",
"init": "0.1.2",
"less-loader": "7.0.1",
"luxon": "^1.26.0",
"madge": "^4.0.1",
"mini-css-extract-plugin": "0.11.0",
"nanoid": "^3.1.22",
"node-sass": "5.0.0",
"nodemailer": "^6.5.0",
"prettier": "2.1.1",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hook-form": "6.7.2",
"react-redux": "7.2.1",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-select": "^3.1.0",
"react-test-renderer": "16.13.1",
"redux": "4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-saga": "1.1.3",
"redux-thunk": "^2.3.0",
"sass-loader": "10.0.2",
"script-loader": "0.7.2",
"socket.io-client": "^4.0.1",
"style-loader": "1.2.1",
"styled-components": "^5.2.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@storybook/addon-actions": "^6.2.8",
"@storybook/addon-essentials": "^6.2.8",
"@storybook/addon-links": "^6.2.8",
"@storybook/react": "^6.2.8",
"babel-plugin-styled-components": "1.12.0",
"husky": "4.3.5",
"lint-staged": "10.3.0",
"react-is": "^16.13.1",
"webpack": "4.44.1",
"webpack-bundle-analyzer": "3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "3.11.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS -g './config/git/commitlint.js'"
}
}
}