-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.52 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.52 KB
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": "quickblox-react-ui-kit",
"version": "0.5.1",
"main": "dist/index-ui.js",
"types": "dist/index-ui.d.ts",
"license": "MIT",
"dependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"classnames": "^2.3.2",
"qb-ai-answer-assistant": "^0.1.2",
"qb-ai-core": "^0.1.3",
"qb-ai-rephrase": "^0.1.2",
"qb-ai-translate": "^0.1.2",
"quickblox": "^2.20.0",
"media-recorder-js": "^2.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^6.11.1",
"react-toastify": "^10.0.4",
"rxjs": "^7.8.0",
"typedoc": "^0.25.0",
"typescript": "^5.2.2",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@chromatic-com/storybook": "^3.2.4",
"@storybook/addon-essentials": "^8.5.8",
"@storybook/addon-interactions": "^8.5.8",
"@storybook/addon-onboarding": "^8.5.8",
"@storybook/addon-webpack5-compiler-swc": "^2.1.0",
"@storybook/blocks": "^8.5.8",
"@storybook/react": "^8.5.8",
"@storybook/react-webpack5": "^8.5.8",
"@storybook/test": "^8.5.8",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^27.5.2",
"@types/node": "^20.17.19",
"@typescript-eslint/eslint-plugin-tslint": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"babel-loader": "^9.2.1",
"compression-webpack-plugin": "^11.1.0",
"css-loader": "^6.11.0",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.11.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"path-browserify": "^1.0.1",
"prettier": "^2.8.0",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"sass": "^1.62.1",
"sass-loader": "^16.0.5",
"storybook": "^8.5.8",
"style-loader": "^3.3.4",
"ts-loader": "^9.4.2",
"url-loader": "^4.1.1",
"web-vitals": "^2.1.4",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"start": "webpack serve --config webpack.app.config.js --mode development",
"build:app": "webpack --config webpack.app.config.js --mode production",
"build:lib": "webpack --config webpack.lib.config.js --mode production",
"test": "jest",
"lint": "eslint ./src",
"format": "prettier --write .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"src/**/*.{ts,tsx}": "eslint"
},
"eslintConfig": {
"extends": [
"airbnb",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:storybook/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}