-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.83 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.83 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
{
"name": "@internal/check-treeshaking",
"version": "0.1.0",
"private": "true",
"description": "Utility to ensure proper dependencies across modules",
"scripts": {
"build": "rushx clean && npx webpack",
"clean": "rimraf dist",
"build:watch": "echo skip",
"build:stable": "echo skip",
"prettier": "prettier --no-error-on-unmatched-pattern --write --config ../../.prettierrc --ignore-path=../../.prettierignore \"**/*.js\" \"**/*.jsx\" \"**/*.ts\" \"**/*.tsx\"",
"prettier:check": "prettier --no-error-on-unmatched-pattern --check --config ../../.prettierrc --ignore-path=../../.prettierignore \"**/*.js\" \"**/*.jsx\" \"**/*.ts\" \"**/*.tsx\"",
"test": "echo skip",
"test:ci-coverage": "echo skip",
"test:stable": "echo skip",
"test:coverage": "echo skip",
"lint": "eslint --max-warnings 0 \"**/*.{js,ts,tsx}\"",
"lint:fix": "rushx lint --fix --",
"lint:quiet": "rushx lint -- --quiet"
},
"license": "MIT",
"dependencies": {
"@internal/acs-ui-common": "1.25.0-beta.1",
"@internal/react-components": "1.25.0-beta.1",
"@internal/chat-stateful-client": "1.25.0-beta.1",
"@internal/calling-stateful-client": "1.25.0-beta.1",
"@internal/chat-component-bindings": "1.25.0-beta.1",
"@internal/calling-component-bindings": "1.25.0-beta.1",
"@internal/react-composites": "1.25.0-beta.1",
"@internal/acs-ui-javascript-loaders": "1.25.0-beta.1"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/plugin-transform-export-namespace-from": "^7.22.11",
"babel-loader": "8.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.31.0",
"prettier": "3.3.2",
"rimraf": "^2.6.2",
"webpack": "5.95.0",
"webpack-cli": "^5.1.4"
}
}