-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.4 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
{
"name": "image-charts",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://gitlab.com/image-charts/connectors-excel-office-365"
},
"license": "MIT",
"engines": {
"node": ">=14 <17",
"npm": ">=6 <9"
},
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"dev-server": "webpack serve --mode development",
"lint": "office-addin-lint check",
"lint:fix": "office-addin-lint fix",
"prettier": "office-addin-lint prettier",
"start": "npm run build & office-addin-debugging start manifest.xml",
"start:desktop": "office-addin-debugging start manifest.xml desktop",
"start:web": "office-addin-debugging start manifest.xml web",
"stop": "office-addin-debugging stop manifest.xml",
"test:e2e": "mocha -r ts-node/register test/end-to-end/*.ts",
"test:unit": "mocha -r ts-node/register test/unit/*.test.ts",
"validate": "office-addin-manifest validate manifest.xml",
"watch": "webpack --mode development --watch"
},
"dependencies": {
"buffer": "^6.0.3",
"core-js": "^3.9.1",
"crypto-browserify": "^3.12.0",
"querystring-es3": "^0.2.1",
"regenerator-runtime": "^0.13.7",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "7.15.0",
"@types/custom-functions-runtime": "^1.6.4",
"@types/find-process": "1.2.0",
"@types/office-js": "^1.0.256",
"@types/office-runtime": "^1.0.23",
"acorn": "^8.5.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"custom-functions-metadata-plugin": "^1.2.9",
"eslint-plugin-office-addins": "^2.0.3",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"office-addin-cli": "^1.3.8",
"office-addin-debugging": "^4.3.8",
"office-addin-dev-certs": "^1.7.10",
"office-addin-lint": "^2.0.3",
"office-addin-manifest": "^1.8.1",
"office-addin-prettier-config": "^1.1.7",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"request": "^2.88.2",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "4.7.4"
},
"prettier": "office-addin-prettier-config",
"browserslist": [
"ie 11"
]
}