-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.97 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
{
"name": "office-addin-taskpane-react",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/OfficeDev/Office-Addin-TaskPane-React.git"
},
"license": "MIT",
"config": {
"app-to-debug": "outlook",
"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": {
"@microsoft/office-js-helpers": "^1.0.2",
"core-js": "^3.6.4",
"es6-promise": "^4.2.8",
"msal": "^1.2.1",
"office-ui-fabric-react": "^7.93.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"regenerator-runtime": "^0.13.3"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@types/mocha": "^5.2.7",
"@types/node": "^13.7.1",
"@types/office-js": "^1.0.75",
"@types/office-runtime": "^1.0.11",
"@types/react": "^16.9.20",
"@types/react-dom": "^16.9.4",
"@types/react-hot-loader": "^4.1.1",
"@types/react-router-dom": "^5.1.3",
"@types/webpack": "^4.41.6",
"@types/webpack-dev-server": "^3.9.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"current-processes": "^0.2.1",
"eslint": "^6.8.0",
"eslint-plugin-office-addins": "^0.1.4",
"eslint-plugin-react": "^7.18.0",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^7.0.0",
"office-addin-cli": "^1.0.7",
"office-addin-debugging": "^3.0.21",
"office-addin-dev-certs": "^1.4.14",
"office-addin-lint": "^1.0.18",
"office-addin-prettier-config": "^1.0.12",
"office-addin-test-helpers": "^1.0.17",
"office-addin-test-server": "^1.0.20",
"postcss-loader": "3.0.0",
"react-hot-loader": "^4.12.18",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.1"
},
"prettier": "office-addin-prettier-config"
}