-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.92 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
{
"name": "office-addin-markout",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/sierrasoftworks/markout.git"
},
"license": "MIT",
"config": {
"app-to-debug": "outlook",
"app-type-to-debug": "web",
"dev-server-port": 3000
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "> 0.25%, not dead",
"useBuiltIns": "usage",
"corejs": {
"version": "3.9"
}
}
],
"@babel/preset-typescript"
],
"plugins": [
"babel-plugin-transform-class-properties",
"babel-plugin-syntax-dynamic-import"
]
},
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development --https false",
"dev-server": "webpack serve --mode development",
"start": "office-addin-debugging start manifest.test.xml",
"start:desktop": "office-addin-debugging start manifest.test.xml desktop",
"start:web": "office-addin-debugging start manifest.test.xml web",
"start:web:test": "office-addin-debugging start manifest.test.xml web",
"stop": "office-addin-debugging stop manifest.test.xml",
"validate": "office-toolbox validate -m manifest.xml",
"watch": "webpack --mode development --watch",
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"@types/highlight.js": "^10.1.0",
"@types/inline-css": "3.0.3",
"@types/markdown-it": "^14.1.2",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"highlight.js": "^11.10.0",
"https-browserify": "^1.0.0",
"inline-css": "^4.0.2",
"markdown-it": "^14.1.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-footnote": "^4.0.0",
"os-browserify": "^0.3.0",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.25.9",
"@babel/preset-typescript": "^7.25.7",
"@types/chai": "^4.3.16",
"@types/expect": "^24.3.2",
"@types/highlight.js": "^10.1.0",
"@types/jest": "^27.5.0",
"@types/jsdom": "^21.1.1",
"@types/office-js": "^1.0.437",
"@types/office-runtime": "^1.0.35",
"babel-loader": "^9.2.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"chai": "^4.5.0",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.38.1",
"css-loader": "^7.1.2",
"file-loader": "^6.2.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^27.5.1",
"jsdom": "^21.1.2",
"office-addin-debugging": "^5.1.6",
"office-addin-dev-certs": "^1.13.3",
"office-toolbox": "^0.3.0",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}