-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
100 lines (100 loc) · 3.01 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
{
"name": "mha",
"version": "1.0.0",
"description": "Message Header Analyzer",
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.2"
},
"private": true,
"scripts": {
"clean": "node tasks/clean.js",
"watch": "webpack --watch",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"serve": "webpack serve",
"dev-server": "webpack serve --mode=development",
"start": "office-addin-debugging start ManifestDebugLocal.xml",
"start:debug-server": "office-addin-debugging start manifestDebugServer.xml",
"stop": "office-addin-debugging stop ManifestDebugLocal.xml && office-addin-debugging stop manifestDebugServer.xml",
"validate": "office-addin-manifest validate Manifest.xml",
"test": "jest",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --fix --ext .ts src",
"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": {
"@jest/globals": "^29.7.0",
"@stylistic/eslint-plugin-js": "^2.11.0",
"@types/jest": "^29.5.14",
"@types/jquery": "^3.5.32",
"@types/office-js": "^1.0.449",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"exports-loader": "^5.0.0",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "^8.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-html-reporters": "^3.1.7",
"mini-css-extract-plugin": "^2.9.2",
"office-addin-debugging": "^5.1.6",
"office-addin-dev-certs": "^1.12.0",
"office-addin-dev-settings": "^2.3.3",
"office-addin-manifest": "^1.12.7",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@microsoft/applicationinsights-web": "^3.3.4",
"@microsoft/office-js": "^1.1.96",
"codepage": "^1.15.0",
"dayjs": "^1.11.13",
"framework7": "^1.7.1",
"framework7-icons": "^5.0.5",
"jquery": "^3.7.1",
"jwt-decode": "^4.0.0",
"office-ui-fabric-js": "^1.5.0",
"promise-polyfill": "8.3.0",
"stacktrace-js": "^2.0.2"
},
"-vs-binding": {
"BeforeBuild": [
"build:dev"
],
"Clean": [
"clean"
]
}
}