-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.05 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.05 KB
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
{
"name": "office-addin-react-vite-template",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/ExtraBB/Office-Addin-React-Vite-Template.git"
},
"license": "MIT",
"config": {
"app_to_debug": "excel",
"app_type_to_debug": "desktop",
"dev_server_port": 3000
},
"scripts": {
"build": "tsc && vite build",
"dev": "vite --port 3000",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "office-addin-lint prettier",
"preview": "vite preview",
"start": "office-addin-debugging start src/manifest.xml",
"start:desktop": "office-addin-debugging start src/manifest.xml desktop",
"start:web": "office-addin-debugging start src/manifest.xml web",
"stop": "office-addin-debugging stop src/manifest.xml",
"validate": "office-addin-manifest validate src/manifest.xml"
},
"dependencies": {
"@fluentui/react-components": "^9.54.0",
"pretty-ms": "^9.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"@types/office-js": "^1.0.256",
"@types/office-runtime": "^1.0.23",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^60.3.1",
"eslint-plugin-office-addins": "^4.0.3",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"office-addin-cli": "^2.0.3",
"office-addin-debugging": "^6.0.3",
"office-addin-dev-certs": "^2.0.3",
"office-addin-lint": "^3.0.3",
"office-addin-manifest": "^2.0.3",
"office-addin-mock": "^3.0.3",
"office-addin-prettier-config": "^2.0.1",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-office-addin": "^1.0.0"
},
"prettier": "office-addin-prettier-config"
}