-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.99 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
{
"name": "outlook-mail-notes",
"description": "Easily add notes to e-mails, senders & conversations in Outlook!",
"version": "1.3.1",
"author": "Nikkel Mollenhauer",
"repository": {
"type": "git",
"url": "git+https://github.com/NikkelM/Outlook-Mail-Notes.git"
},
"config": {
"app_to_debug": "outlook",
"app_type_to_debug": "desktop",
"dev_server_port": 3000
},
"scripts": {
"build": "npm run prebuild && webpack --mode production",
"build:dev": "npm run prebuild && webpack --mode development",
"lint": "office-addin-lint check",
"lint:fix": "office-addin-lint fix",
"prettier": "office-addin-lint prettier",
"start": "npm run prebuild && office-addin-debugging start manifest.xml && webpack serve --mode development",
"validate": "office-addin-manifest validate manifest.xml",
"prebuild": "node -p \"'export const ADDIN_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts"
},
"dependencies": {
"core-js": "^3.9.1",
"quill": "^1.3.7",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.13.0",
"@types/office-js": "^1.0.256",
"@types/office-runtime": "^1.0.23",
"@types/quill": "^2.0.10",
"acorn": "^8.5.0",
"babel-loader": "^8.3.0",
"copy-webpack-plugin": "^9.0.1",
"eslint-plugin-office-addins": "^2.1.5",
"file-loader": "^6.2.0",
"html-loader": "^4.1.0",
"html-webpack-plugin": "^5.5.0",
"office-addin-cli": "^1.5.5",
"office-addin-debugging": "^5.0.10",
"office-addin-dev-certs": "^1.11.3",
"office-addin-lint": "^2.2.5",
"office-addin-manifest": "^1.12.3",
"office-addin-prettier-config": "^1.2.0",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.4.1",
"typescript": "^4.3.5",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "4.13.1",
"yo": "^5.0.0"
},
"prettier": "office-addin-prettier-config"
}