-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 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
75
76
77
78
79
{
"name": "markdown",
"description": "Markdown editor add-on for Outlook",
"author": "Red Canari, Inc.",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"clean": "rimraf dist && rimraf .awcache",
"lint": "tslint --project tsconfig.json",
"start": "webpack-dev-server --inline --config config/webpack.dev.js --progress",
"sideload": "office-toolbox sideload -m markdown-manifest.xml -a Outlook",
"build": "npm run clean && webpack --config config/webpack.prod.js --colors --progress --bail",
"validate": "./node_modules/.bin/validate-office-addin"
},
"dependencies": {
"@babel/preset-env": "^7.1.0",
"@microsoft/office-js-helpers": "^1.0.1",
"codemirror": "^5.40.2",
"core-js": "^2.5.3",
"highlightjs": "^9.10.0",
"juice": "^5.0.0",
"lodash": "^4.17.11",
"markdown-it": "^8.4.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-container": "^2.0.0",
"markdown-it-deflist": "^2.0.3",
"markdown-it-emoji": "^1.4.0",
"markdown-it-footnote": "^3.0.1",
"markdown-it-highlightjs": "^3.0.0",
"markdown-it-imsize": "^2.0.1",
"markdown-it-regexp": "^0.4.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-video": "^0.6.3",
"marked": "^0.5.1",
"office-ui-fabric-react": "^5.51.0",
"react": "^16.2.0",
"react-codemirror2": "^5.1.0",
"react-dom": "^16.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@types/office-js": "^0.0.51",
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"@types/react-hot-loader": "^3.0.6",
"@types/webpack": "2.2.12",
"@types/webpack-dev-server": "1.12.6",
"autoprefixer": "6.7.7",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"copy-webpack-plugin": "4.0.1",
"css-loader": "^1.0.0",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.10.1",
"html-webpack-plugin": "2.28.0",
"less": "^3.0.1",
"less-loader": "^4.0.5",
"office-addin-validator": "^1.0.1",
"office-toolbox": "^0.1.0",
"postcss-loader": "1.3.3",
"raw-loader": "^0.5.1",
"react-hot-loader": "^3.1.3",
"rimraf": "2.6.1",
"style-loader": "0.16.0",
"to-string-loader": "^1.1.5",
"ts-loader": "^3.5.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "^4.1.1"
}
}