-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.56 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
{
"name": "@mattermost/calls-common",
"version": "0.27.2",
"description": "Common code shared between calls webapp, desktop, and mobile.",
"main": "./lib/index.js",
"scripts": {
"build": "tsc --build --verbose",
"clean": "rm -rf tsconfig.tsbuildinfo ./lib ./node_modules",
"lint": "eslint --ignore-pattern node_modules --ignore-pattern dist --ignore-pattern lib --ext .js,.jsx,.tsx,.ts . --quiet --cache",
"fix": "eslint --ignore-pattern node_modules --ignore-pattern dist --ignore-pattern lib --ext .js,.jsx,.tsx,.ts . --quiet --fix --cache",
"check-types": "tsc",
"test": "jest --no-watchman --verbose ./src"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@eslint/js": "9.13.0",
"@types/eslint__js": "8.42.3",
"@types/jest": "27.0.2",
"@types/node": "20.11.1",
"@types/react-intl": "3.0.0",
"@types/webrtc": "0.0.44",
"@typescript-eslint/eslint-plugin": "7.2.0",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"jest": "27.1.0",
"typescript": "5.6.3",
"typescript-eslint": "8.12.2",
"webpack": "5.75.0"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/src/setup_jest.ts"
]
},
"dependencies": {
"@msgpack/msgpack": "3.0.0-beta2",
"fflate": "0.8.2"
}
}