-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.78 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.78 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
{
"name": "vector",
"version": "1.0.0",
"description": "PowerPoint Web Add-in for creating charts like Think-Cell",
"homepage": "https://mortenator.github.io/vector/",
"main": "src/taskpane/index.tsx",
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"dev": "webpack serve --mode development",
"start": "webpack serve --mode development --https",
"lint": "eslint src --ext .ts,.tsx",
"sideload": "npx office-addin-debugging start manifest.xml",
"stop": "npx office-addin-debugging stop manifest.xml",
"validate": "npx office-addin-manifest validate manifest.xml",
"validate:prod": "npx office-addin-manifest validate manifest-prod.xml",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@fluentui/react-components": "^9.46.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.23.0",
"@babel/preset-typescript": "^7.23.0",
"@types/office-js": "^1.0.377",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"gh-pages": "^6.1.0",
"html-webpack-plugin": "^5.5.3",
"office-addin-debugging": "^5.0.0",
"office-addin-dev-certs": "^1.11.0",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"sharp": "^0.34.5",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"browserslist": [
"last 2 versions",
"not dead"
]
}