This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.63 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": "office-addin-taskpane-angular",
"description": "Official Live-Poll PowerPoint AddIn to embed live poll results directly into your presentation",
"version": "0.0.1",
"author": {
"name": "Marc Auberer",
"email": "[email protected]",
"url": "www.live-poll.de"
},
"repository": {
"type": "git",
"url": "https://github.com/livepoll/live-poll-powerpoint.git"
},
"license": "MIT",
"config": {
"app-to-debug": "powerpoint",
"app-type-to-debug": "desktop",
"dev-server-port": 3000
},
"scripts": {
"build": "webpack -p --mode production --https false",
"build:dev": "webpack --mode development --https false",
"build-dev": "webpack --mode development --https false && echo . && echo . && echo . && echo Please use 'build:dev' instead of 'build-dev'.",
"dev-server": "webpack-dev-server --mode development",
"lint": "office-addin-lint check",
"lint:fix": "office-addin-lint fix",
"prettier": "office-addin-lint prettier",
"start": "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",
"validate": "office-addin-manifest validate manifest.xml",
"watch": "webpack --mode development --watch"
},
"dependencies": {
"@angular/common": "^5.2.11",
"@angular/compiler": "^5.2.11",
"@angular/core": "^5.2.11",
"@angular/platform-browser": "^5.2.11",
"@angular/platform-browser-dynamic": "^5.2.11",
"@microsoft/office-js-helpers": "^1.0.2",
"office-ui-fabric-js": "^1.5.0",
"zone.js": "^0.8.29"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.15",
"@types/find-process": "1.2.0",
"@types/office-js": "^1.0.173",
"@types/office-runtime": "^1.0.17",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"eslint-config-office-addins": "^1.0.23",
"find-process": "^1.4.4",
"file-loader": "^4.3.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.5.2",
"office-addin-cli": "^1.1.1",
"office-addin-debugging": "^4.1.5",
"office-addin-dev-certs": "^1.5.17",
"office-addin-lint": "^1.1.6",
"office-addin-manifest": "1.5.21",
"office-addin-prettier-config": "^1.0.16",
"source-map-loader": "^1.1.3",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"prettier": "office-addin-prettier-config"
}