-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
88 lines (88 loc) · 2.68 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
{
"name": "office-addin-taskpane-sso-js",
"version": "0.0.0",
"private": true,
"config": {
"app_to_debug": "excel",
"app_type_to_debug": "desktop",
"dev_server_port": 3000
},
"engines": {
"node": ">=16 <21",
"npm": ">=7 <11"
},
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"configure-sso": "office-addin-sso configure manifest.xml",
"convert-to-single-host": "node convertToSingleHost.js",
"dev-server": "node --inspect=localhost:8080 dist/middletier.js",
"lint": "office-addin-lint check",
"lint:fix": "office-addin-lint fix",
"prestart": "npm run build:dev",
"prettier": "office-addin-lint prettier",
"signin": "office-addin-dev-settings m365-account login",
"signout": "office-addin-dev-settings m365-account logout",
"start": "office-addin-debugging start manifest.xml",
"stop": "office-addin-debugging stop manifest.xml",
"test": "echo \"No tests\"",
"validate": "office-addin-manifest validate manifest.xml"
},
"dependencies": {
"@azure/msal-browser": "^2.28.1",
"cookie-parser": "^1.4.6",
"core-js": "^3.36.0",
"dotenv": "^8.2.0",
"express": "4.21.2",
"form-urlencoded": "3.0.0",
"http-errors": "~1.6.3",
"jquery": "^3.5.1",
"jsonwebtoken": "9.0.0",
"jwks-rsa": "2.1.4",
"morgan": "1.9.1",
"node-fetch": "^2.6.1",
"office-addin-sso": "^3.0.1",
"regenerator-runtime": "^0.14.1",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.25.4",
"@types/jquery": "^3.3.31",
"@types/node": "^20.11.25",
"@types/office-js": "^1.0.377",
"@types/office-runtime": "^1.0.35",
"acorn": "^8.5.0",
"babel-loader": "^9.1.3",
"buffer": "^6.0.3",
"concurrently": "^6.3.0",
"copy-webpack-plugin": "^12.0.2",
"eslint-plugin-office-addins": "^4.0.3",
"file-loader": "^6.2.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"https-browserify": "^1.0.0",
"mocha": "^11.1.0",
"office-addin-cli": "^2.0.3",
"office-addin-debugging": "^6.0.3",
"office-addin-dev-certs": "^2.0.3",
"office-addin-lint": "^3.0.3",
"office-addin-manifest": "^2.0.3",
"office-addin-mock": "^3.0.3",
"office-addin-prettier-config": "^2.0.1",
"source-map-loader": "^5.0.0",
"stream-http": "^3.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"url": "0.11.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "5.1.0"
},
"prettier": "office-addin-prettier-config",
"browserslist": [
"last 2 versions",
"ie 11"
]
}