-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.44 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.44 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
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
110
{
"name": "mha",
"version": "1.0.0",
"description": "Message Header Analyzer",
"type": "module",
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.2"
},
"private": true,
"scripts": {
"clean": "node tasks/clean.js",
"watch": "webpack --watch --mode=development",
"build": "webpack --mode=production --env=prod",
"build:dev": "webpack --mode=development",
"build:analyze": "webpack --mode=production --env analyze",
"serve": "webpack serve --mode=development",
"dev-server": "webpack serve --mode=development",
"start": "office-addin-debugging start ManifestDebugLocal.xml",
"start:debug-server": "office-addin-debugging start manifestDebugServer.xml",
"start:desktop": "office-addin-debugging start ManifestDebugLocal.xml desktop --app",
"stop": "office-addin-debugging stop ManifestDebugLocal.xml && office-addin-debugging stop manifestDebugServer.xml",
"validate": "office-addin-manifest validate Manifest.xml",
"test": "jest --silent",
"test:debug": "jest --verbose",
"lint": "eslint \"*.{js,ts}\" \"src/**/*\" \"tasks/**/*\"",
"lint:fix": "eslint --fix \"*.{js,ts}\" \"src/**/*\" \"tasks/**/*\"",
"pretest": "npm run lint",
"prebuild": "npm run clean"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/MHA.git"
},
"author": "Stephen Griffin",
"license": "MIT",
"config": {
"app_to_debug": "outlook",
"app_type_to_debug": "desktop",
"dev_server_port": 44336
},
"bugs": {
"url": "https://github.com/microsoft/MHA/issues"
},
"homepage": "https://github.com/microsoft/MHA#readme",
"devDependencies": {
"@eslint/compat": "^2.0.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@jest/globals": "^30.3.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/jest": "^30.0.0",
"@types/office-js": "^1.0.588",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.32.1",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"exports-loader": "^5.0.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"globals": "^17.5.0",
"html-webpack-plugin": "^5.6.6",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-html-reporters": "^3.1.7",
"mini-css-extract-plugin": "^2.10.2",
"office-addin-debugging": "^6.0.7",
"office-addin-dev-certs": "^2.0.3",
"office-addin-dev-settings": "^3.0.3",
"office-addin-manifest": "^2.0.3",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"ts-jest": "^29.4.9",
"ts-loader": "^9.5.7",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.106.2",
"webpack-bundle-analyzer": "^5.3.0",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"@fluentui/web-components": "^2.6.1",
"@microsoft/applicationinsights-web": "^3.4.1",
"@microsoft/office-js": "^1.1.110",
"codepage": "^1.15.0",
"dayjs": "^1.11.20",
"framework7": "^9.0.3",
"framework7-icons": "^5.0.5",
"jwt-decode": "^4.0.0",
"promise-polyfill": "8.3.0",
"stacktrace-js": "^2.0.2",
"unfetch": "^5.0.0"
},
"overrides": {
"tmp": "^0.2.5"
},
"-vs-binding": {
"BeforeBuild": [
"build:dev"
],
"Clean": [
"clean"
]
}
}