forked from OfficeDev/microsoft-teams-library-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.74 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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "teams-js-monorepo",
"private": true,
"author": "Microsoft Teams",
"workspaces": [
"apps/*",
"packages/*",
"tools/**/*"
],
"scripts": {
"build": "lerna run build --stream",
"build:clean": "yarn clean && yarn build",
"bundleAnalyze": "yarn workspace @microsoft/bundle-analysis-app webpack:profile",
"bundleAnalyze:collect": "yarn bundleAnalyze && node tools/cli/collectBundleAnalysis.js --folderName bundleAnalysis",
"build-test-app-CDN": "yarn workspace teams-test-app build:CDN",
"build-test-app-local": "yarn workspace teams-test-app build:local",
"build-test-app-V1": "yarn workspace teams-test-app build:CDNV1",
"changefile": "yarn beachball",
"clean": "lerna run clean --stream",
"clean:full": "yarn clean && yarn clean:modules",
"clean:modules": "lerna clean -y && rimraf node_modules",
"docs": "yarn workspace @microsoft/teams-js docs",
"docs:validate": "yarn workspace @microsoft/teams-js docs:validate",
"lint": "lerna run lint",
"start-perf-app": "yarn workspace teams-perf-test-app start",
"start-test-app": "yarn workspace teams-test-app start",
"start-test-app-CDN": "yarn workspace teams-test-app start:CDN",
"start-test-app-local": "yarn workspace teams-test-app start:local",
"start-test-app-V1": "yarn workspace teams-test-app start:CDNV1",
"test": "lerna run test --stream"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@mixer/webpack-bundle-compare": "^0.1.0",
"@octokit/core": "^3.5.1",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^27.0.1",
"@types/jscodeshift": "^0.11.0",
"@types/jszip": "^3.4.1",
"@types/msgpack-lite": "^0.1.7",
"@types/node": "^15.6.1",
"@types/pako": "^1.0.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/webpack": "^5.10.0",
"@types/webpack-dev-server": "^4.5.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"azure-keyvault": "^3.0.4",
"babel-loader": "^8.2.2",
"beachball": "^2.21.0",
"copy-webpack-plugin": "9.1.0",
"cross-env": "*",
"css-loader": "^5.0.1",
"del": "2.2.2",
"deploy-azure-cdn": "^2.1.0",
"dts-bundle-webpack": "^1.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-only-error": "^1.0.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-strict-null-checks": "^0.0.19",
"fs-extra": "^9.1.0",
"fs-jetpack": "^2.2.2",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.1.0",
"jest-junit": "^12.0.0",
"lerna": "^3.22.1",
"merge2": "1.0.2",
"path": "^0.12.7",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"style-loader": "^2.0.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"typedoc": "^0.22.17",
"typescript": "^4.1.2",
"webpack": "^5.10.0",
"webpack-assets-manifest": "^5.0.6",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.1",
"webpack-merge": "^5.8.0",
"webpack-subresource-integrity": "^5.0.0",
"yargs": "^8.0.1"
},
"resolutions": {
"dns-packet": "^1.3.2",
"glob-parent": "^5.1.2",
"lodash": "^4.17.21",
"merge": "^2.1.1",
"serialize-javascript": "^3.1.0",
"set-value": "^2.0.1",
"underscore": "1.12.1",
"url-parse": "^1.5.0",
"y18n": "^4.0.1"
},
"dependencies": {}
}