forked from OfficeDev/Office-Addin-TaskPane-React-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.31 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-taskpane-react-js",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/OfficeDev/Office-Addin-TaskPane-React-JS.git"
},
"license": "MIT",
"config": {
"app_to_debug": "excel",
"app_type_to_debug": "desktop",
"dev_server_port": 3000
},
"engines": {
"node": ">=16 <19",
"npm": ">=7 <11"
},
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"convert-to-single-host": "node convertToSingleHost.js",
"dev-server": "webpack serve --mode development",
"lint": "office-addin-lint check",
"lint:fix": "office-addin-lint fix",
"prettier": "office-addin-lint prettier",
"signin": "office-addin-dev-settings m365-account login",
"signout": "office-addin-dev-settings m365-account logout",
"start": "office-addin-debugging start manifest.xml",
"start:desktop": "office-addin-debugging start manifest.xml desktop",
"start:desktop:outlook": "office-addin-debugging start manifest.outlook.xml desktop --app outlook",
"start:web": "office-addin-debugging start manifest.xml web",
"stop": "office-addin-debugging stop manifest.xml",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "mocha -r ts-node/register test/end-to-end/*.ts",
"test:unit": "mocha -r ts-node/register test/unit/*.test.ts",
"validate": "office-addin-manifest validate manifest.xml",
"watch": "webpack --mode development --watch"
},
"dependencies": {
"@fluentui/react-components": "^9.30.4",
"@fluentui/react-icons": "^2.0.214",
"core-js": "^3.9.1",
"es6-promise": "^4.2.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-class-properties": "^7.3.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.13.0",
"@babel/preset-react": "^7.6.3",
"@types/es6-collections": "^0.5.29",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/office-js": "^1.0.256",
"@types/office-runtime": "^1.0.23",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/webpack": "^4.4.34",
"acorn": "^8.5.0",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"copy-webpack-plugin": "^9.0.1",
"eslint-plugin-office-addins": "^2.1.5",
"eslint-plugin-react": "^7.28.0",
"file-loader": "^6.2.0",
"find-process": "^1.4.4",
"html-loader": "^4.1.0",
"html-webpack-plugin": "^5.5.0",
"less": "^3.10.3",
"less-loader": "^10.0.1",
"mocha": "^10.1.0",
"office-addin-cli": "^1.5.5",
"office-addin-debugging": "^5.0.12",
"office-addin-dev-certs": "^1.11.4",
"office-addin-lint": "^2.2.5",
"office-addin-manifest": "^1.12.4",
"office-addin-mock": "^2.3.9",
"office-addin-prettier-config": "^1.2.0",
"office-addin-test-helpers": "^1.4.5",
"office-addin-test-server": "^1.4.8",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "4.13.1"
},
"prettier": "office-addin-prettier-config",
"browserslist": [
"ie 11"
]
}