-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.43 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.43 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
{
"name": "gitlab",
"version": "0.1.0",
"description": "GitLab plugin for Mattermost",
"main": "src/index.js",
"scripts": {
"build": "webpack --mode=production",
"build:watch": "webpack --mode=production --watch",
"debug": "webpack --mode=none",
"debug:watch": "webpack --mode=development --watch",
"lint": "eslint --ignore-pattern node_modules --ignore-pattern dist --ext .js --ext .jsx --ext tsx --ext ts . --quiet --cache",
"fix": "eslint --ignore-pattern node_modules --ignore-pattern dist --ext .js --ext .jsx --ext tsx --ext ts . --quiet --fix --cache",
"test": "jest --forceExit --detectOpenHandles --verbose",
"test:watch": "jest --watch",
"test-ci": "jest --forceExit --detectOpenHandles --maxWorkers=2",
"check-types": "tsc"
},
"dependencies": {
"@primer/octicons-react": "10.1.0",
"@reduxjs/toolkit": "2.5.1",
"core-js": "3.6.5",
"csstype": "3.0.3",
"debounce-promise": "3.1.2",
"jest": "29.7.0",
"mattermost-redux": "5.33.1",
"prop-types": "15.7.2",
"react": "16.14.0",
"react-bootstrap": "1.3.0",
"react-custom-scrollbars": "4.2.1",
"react-dom": "16.14.0",
"react-redux": "7.2.1",
"react-select": "5.3.2",
"redux": "4.0.5",
"redux-offline": "2.0.0",
"reselect": "4.1.8"
},
"devDependencies": {
"@babel/cli": "7.11.6",
"@babel/core": "7.11.6",
"@babel/eslint-parser": "7.22.15",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.17.12",
"@babel/plugin-proposal-optional-chaining": "7.11.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/polyfill": "7.11.5",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@babel/runtime": "7.11.2",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.2",
"@types/debounce-promise": "3.1.4",
"@types/jest": "29.5.0",
"@types/node": "14.11.1",
"@types/react": "16.9.49",
"@types/react-bootstrap": "0.32.29",
"@types/react-custom-scrollbars": "4.0.10",
"@types/react-dom": "16.9.8",
"@types/react-intl": "3.0.0",
"@types/react-redux": "7.1.9",
"@types/react-router-dom": "5.1.5",
"@types/react-select": "5.0.1",
"@types/react-transition-group": "4.4.0",
"@typescript-eslint/eslint-plugin": "4.1.1",
"@typescript-eslint/parser": "4.1.1",
"babel-jest": "29.5.0",
"babel-loader": "8.1.0",
"babel-plugin-typescript-to-proptypes": "1.4.1",
"css-loader": "6.11.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.7",
"enzyme-to-json": "3.6.2",
"eslint": "7.9.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-import-resolver-webpack": "0.12.2",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.2",
"file-loader": "6.1.0",
"identity-obj-proxy": "3.0.0",
"jest-environment-jsdom": "29.5.0",
"style-loader": "1.2.1",
"typescript": "4.6.4",
"webpack": "5.96.1",
"webpack-cli": "4.2.0"
}
}