-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.54 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.54 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
{
"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:stable": "echo skip",
"test:coverage": "echo skip",
"lint": "eslint --max-warnings 0 \"**/*.{js,ts,tsx}\"",
"lint:fix": "npm run lint -- --fix",
"lint:quiet": "npm run lint -- --quiet"
},
"dependencies": {
"@internal/acs-ui-common": "1.1.1-beta.1",
"@internal/react-components": "1.1.1-beta.1",
"@internal/chat-stateful-client": "1.1.1-beta.1",
"@internal/calling-stateful-client": "1.1.1-beta.1",
"@internal/chat-component-bindings": "1.1.1-beta.1",
"@internal/calling-component-bindings": "1.1.1-beta.1"
},
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "~2.22.1",
"prettier": "2.3.1",
"rimraf": "^2.6.2",
"webpack": "^4.44.0",
"webpack-cli": "4.7.2"
}
}