-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.4 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.4 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
62
63
64
65
66
67
68
69
70
71
{
"name": "ms-word-addin",
"version": "1.8.4",
"private": true,
"scripts": {
"dev": "vite",
"build": "rm -rf ./dist && run-p type-check build-ui",
"preview": "vite preview --port 4173",
"test": "yarn test:unit --run",
"test:unit": "vitest",
"build-ui": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"clean": "shx rm -rf dist",
"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",
"cert:install": "node ./node_modules/.bin/office-addin-dev-certs install",
"cert:uninstall": "node ./node_modules/.bin/office-addin-dev-certs uninstall",
"postinstall": "node scripts/init-env"
},
"dependencies": {
"@readapt/settings": "^1.8.4",
"@readapt/text-engine": "^1.8.4",
"@readapt/visual-engine": "^1.8.4",
"dotenv": "^16.0.3",
"lodash-es": "^4.17.23",
"sanitize-html": "^2.8.1",
"vue": "~3.2.45",
"vue-i18n": "~9.2.2",
"vue-router": "~4.1.6",
"vue3-promise-dialog": "^0.3.4"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@types/node": "^16.18.10",
"@types/office-js": "^1.0.180",
"@types/office-runtime": "^1.0.17",
"@types/sanitize-html": "^2.8.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.2.8",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.13",
"daisyui": "^2.46.1",
"eslint": "^8.30.0",
"eslint-plugin-tailwindcss": "^3.8.0",
"eslint-plugin-vue": "^9.8.0",
"jsdom": "^21.1.0",
"npm-run-all": "^4.1.5",
"office-addin-cli": "^1.3.5",
"office-addin-debugging": "^4.3.8",
"office-addin-dev-certs": "^1.7.7",
"office-addin-dev-settings": "^1.10.8",
"office-addin-lint": "^2.0.0",
"office-addin-manifest": "^1.7.7",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"sass": "^1.57.1",
"tailwindcss": "^3.2.4",
"terser": "^5.16.1",
"typescript": "~4.9.4",
"vite": "^4.0.4",
"vite-plugin-static-copy": "^0.13.0",
"vitest": "^0.27.0",
"vue-tsc": "^1.0.24"
}
}