-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.27 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
{
"name": "doit-ai-office-addin",
"version": "1.0.0",
"license": "MIT",
"config": {
"app_to_debug": "outlook",
"app_type_to_debug": "desktop",
"dev_server_port": 3000
},
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"dev-server": "webpack serve --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": {
"@fluentui/react": "^8.110.10",
"core-js": "^3.31.1",
"es6-promise": "^4.2.8",
"openai": "^3.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.13.11"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/office-js": "^1.0.338",
"@types/office-runtime": "^1.0.33",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-hot-loader": "^4.1.1",
"@types/webpack": "^4.41.33",
"@types/webpack-dev-server": "^4.7.2",
"acorn": "^8.10.0",
"babel-loader": "^8.3.0",
"copy-webpack-plugin": "^9.1.0",
"eslint-plugin-office-addins": "^2.1.5",
"eslint-plugin-react": "^7.32.2",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"less": "^3.13.1",
"less-loader": "^10.2.0",
"office-addin-cli": "^1.5.5",
"office-addin-debugging": "^5.0.10",
"office-addin-dev-certs": "^1.11.4",
"office-addin-lint": "^2.2.5",
"office-addin-manifest": "^1.12.5",
"office-addin-prettier-config": "^1.2.0",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"source-map-loader": "^3.0.2",
"ts-loader": "^9.4.4",
"typescript": "^4.9.5",
"webpack": "^5.88.2",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "4.7.4"
},
"prettier": "office-addin-prettier-config",
"browserslist": [
"ie 11"
]
}