-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
96 lines (96 loc) · 3.63 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
{
"private": true,
"engines": {
"node": ">=18.10.0",
"npm": "^9.0.0 || ^10.0.0"
},
"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",
"extract": "formatjs extract 'src/**/*.{ts,tsx}' --ignore 'src/**/*.d.ts' --out-file i18n/temp.json --id-interpolation-pattern '[sha512:contenthash:base64:6]' && formatjs compile 'i18n/temp.json' --out-file i18n/en.json && rm i18n/temp.json"
},
"dependencies": {
"@mattermost/calls-common": "github:mattermost/calls-common#f973548df2ad5c7ea4cbff648369e8caa1e0fb07",
"@mattermost/compass-icons": "0.1.31",
"@msgpack/msgpack": "2.7.1",
"bootstrap": "3.4.1",
"core-js": "3.26.1",
"luxon": "3.3.0",
"react": "17.0.2",
"react-bootstrap": "github:mattermost/react-bootstrap#c6957962364e0818a51bbfd13e89919903b422d6",
"react-dom": "17.0.2",
"react-redux": "7.2.4",
"redux": "4.2.0",
"semver-parser": "4.0.0",
"styled-components": "6.1.8",
"stylis": "4.3.1"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/eslint-parser": "7.19.1",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/plugin-proposal-object-rest-spread": "7.16.0",
"@babel/plugin-proposal-optional-chaining": "7.14.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@formatjs/cli": "6.0.4",
"@mattermost/client": "file:../webapp/mattermost-webapp/webapp/platform/client",
"@mattermost/desktop-api": "5.10.0-1",
"@mattermost/eslint-plugin": "1.1.0-0",
"@mattermost/types": "file:../webapp/mattermost-webapp/webapp/platform/types",
"@types/jest": "27.0.2",
"@types/lodash": "4.14.182",
"@types/luxon": "3.3.0",
"@types/node": "16.18.11",
"@types/react": "17.0.2",
"@types/react-bootstrap": "0.32.26",
"@types/react-dom": "17.0.2",
"@types/react-intl": "3.0.0",
"@types/react-redux": "7.1.21",
"@types/shallow-equals": "1.0.0",
"@types/simple-peer": "9.11.3",
"babel-loader": "8.2.3",
"babel-plugin-formatjs": "10.4.0",
"babel-plugin-styled-components": "2.1.4",
"babel-plugin-typescript-to-proptypes": "2.1.0",
"css-loader": "5.2.6",
"css-vars-ponyfill": "2.4.8",
"eslint": "8.57.0",
"eslint-import-resolver-webpack": "0.13.8",
"eslint-plugin-formatjs": "4.13.0",
"eslint-plugin-react": "7.34.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "12.1.0",
"eslint-plugin-unused-imports": "3.1.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"jest": "27.0.6",
"jest-canvas-mock": "2.3.1",
"jest-junit": "12.2.0",
"process": "0.11.10",
"react-intl": "6.6.5",
"redux-devtools-extension": "2.13.9",
"redux-thunk": "2.4.1",
"sass": "1.66.1",
"sass-loader": "13.2.0",
"style-loader": "3.0.0",
"typescript": "5.3.3",
"webpack": "5.74.0",
"webpack-cli": "4.10.0"
},
"overrides": {
"@mattermost/desktop-api": {
"typescript": "$typescript"
}
}
}