-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.16 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.16 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"private": true,
"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"
},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-class-properties": "7.25.9",
"@babel/plugin-transform-object-rest-spread": "7.25.9",
"@babel/plugin-transform-optional-chaining": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@babel/runtime": "7.27.1",
"@emotion/babel-preset-css-prop": "11.12.0",
"@mattermost/client": "10.9.0",
"@mattermost/types": "10.9.0",
"@testing-library/jest-dom": "6.4.0",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.11",
"@types/node": "14.11.1",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"@types/react-redux": "7.1.17",
"@types/react-router-dom": "5.3.1",
"@types/react-transition-group": "4.4.7",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"babel-plugin-typescript-to-proptypes": "2.1.0",
"css-loader": "6.11.0",
"eslint": "8.57.1",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"file-loader": "6.1.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-canvas-mock": "2.5.2",
"jest-config": "30.0.4",
"jest-environment-jsdom": "30.2.0",
"jest-junit": "16.0.0",
"react-test-renderer": "18.2.0",
"sass": "1.60.0",
"sass-loader": "12.2.0",
"style-loader": "3.3.1",
"typescript": "5.6.3",
"webpack": "5.96.1",
"webpack-cli": "5.1.4"
},
"dependencies": {
"@primer/octicons-react": "10.1.0",
"core-js": "3.39.0",
"csstype": "3.0.3",
"debounce-promise": "3.1.2",
"mattermost-redux": "11.4.0",
"node-fetch": "2.6.7",
"prop-types": "15.7.2",
"react": "18.2.0",
"react-bootstrap": "1.3.0",
"react-custom-scrollbars-2": "4.5.0",
"react-dom": "18.2.0",
"react-markdown": "^9.0.0",
"react-redux": "8.1.3",
"react-select": "5.10.0",
"redux": "4.2.1",
"reselect": "4.1.8"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/non_npm_dependencies/"
],
"clearMocks": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"coverageReporters": [
"lcov",
"text-summary"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "identity-obj-proxy",
"^.+\\.(css|less|scss)$": "identity-obj-proxy",
"^.*i18n.*\\.(json)$": "<rootDir>/tests/i18n_mock.json",
"^bundle-loader\\?lazy\\!(.*)$": "$1"
},
"moduleDirectories": [
"node_modules",
"non_npm_dependencies"
],
"reporters": [
"default",
"jest-junit"
],
"transform": {
"^.+\\.[jt]sx?$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-router|mattermost-webapp)"
],
"setupFiles": [
"jest-canvas-mock"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.tsx"
],
"testEnvironment": "jsdom",
"testEnvironmentOptions": {
"url": "http://localhost:8065"
}
}
}